update comments

This commit is contained in:
Craig Roberts 2018-08-30 15:16:46 -04:00
parent 8035762721
commit 1a8c4cd329
2 changed files with 12 additions and 13 deletions

View file

@ -6,8 +6,7 @@ using System.Text;
namespace AsterNET.Manager.Event
{
/// <summary>
/// Raised when a queue member is notified of a caller in the queue and fails to answer.
///
/// Raised when a queue member is notified of a caller in the queue and fails to answer.<br/>
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_AgentRingNoAnswer">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_AgentRingNoAnswer</see>
/// </summary>
public class AgentRingNoAnswerEvent : AbstractAgentVariables
@ -23,32 +22,32 @@ namespace AsterNET.Manager.Event
/// <summary>
/// Gets or sets the queue.
/// Gets or sets the queue.
/// </summary>
public string Queue { get; set; }
/// <summary>
/// Gets or sets the name of the agent.
/// Gets or sets the name of the agent.
/// </summary>
public string AgentName { get; set; }
/// <summary>
/// Gets or sets the agent called.
/// Gets or sets the agent called.
/// </summary>
public string AgentCalled { get; set; }
/// <summary>
/// Gets or sets the channel calling.
/// Gets or sets the channel calling.
/// </summary>
public string ChannelCalling { get; set; }
/// <summary>
/// Gets or sets the destination channel.
/// Gets or sets the destination channel.
/// </summary>
public string DestinationChannel { get; set; }
/// <summary>
/// Gets or sets the Caller*ID of the calling channel.
/// Gets or sets the Caller*ID of the calling channel.
/// </summary>
public string CallerId { get; set; }
@ -63,17 +62,17 @@ namespace AsterNET.Manager.Event
public string CallerIdName { get; set; }
/// <summary>
/// Gets or sets the context.
/// Gets or sets the context.
/// </summary>
public string Context { get; set; }
/// <summary>
/// Gets or sets the extension.
/// Gets or sets the extension.
/// </summary>
public string Extension { get; set; }
/// <summary>
/// Gets or sets the priority.
/// Gets or sets the priority.
/// </summary>
public string Priority { get; set; }

View file

@ -120,8 +120,8 @@ namespace AsterNET.Manager
/// </summary>
public event EventHandler<AgentLogoffEvent> AgentLogoff;
/// <summary>
/// An AgentRingNoAnswer is triggered when an agent was rang and did not answer.<br/>
/// To enable AgentRingNoAnswer you have to set eventwhencalled = yes in queues.conf.<br/>
/// An AgentRingNoAnswer is triggered when an agent was rang and did not answer.
/// To enable AgentRingNoAnswer you have to set eventwhencalled = yes in queues.conf.
/// </summary>
public event EventHandler<AgentRingNoAnswerEvent> AgentRingNoAnswer;
/// <summary>