update comments
This commit is contained in:
parent
8035762721
commit
1a8c4cd329
2 changed files with 12 additions and 13 deletions
|
@ -6,8 +6,7 @@ using System.Text;
|
||||||
namespace AsterNET.Manager.Event
|
namespace AsterNET.Manager.Event
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <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>
|
/// 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>
|
/// </summary>
|
||||||
public class AgentRingNoAnswerEvent : AbstractAgentVariables
|
public class AgentRingNoAnswerEvent : AbstractAgentVariables
|
||||||
|
@ -23,32 +22,32 @@ namespace AsterNET.Manager.Event
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the queue.
|
/// Gets or sets the queue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Queue { get; set; }
|
public string Queue { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the name of the agent.
|
/// Gets or sets the name of the agent.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string AgentName { get; set; }
|
public string AgentName { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the agent called.
|
/// Gets or sets the agent called.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string AgentCalled { get; set; }
|
public string AgentCalled { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the channel calling.
|
/// Gets or sets the channel calling.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ChannelCalling { get; set; }
|
public string ChannelCalling { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the destination channel.
|
/// Gets or sets the destination channel.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string DestinationChannel { get; set; }
|
public string DestinationChannel { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the Caller*ID of the calling channel.
|
/// Gets or sets the Caller*ID of the calling channel.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CallerId { get; set; }
|
public string CallerId { get; set; }
|
||||||
|
|
||||||
|
@ -63,17 +62,17 @@ namespace AsterNET.Manager.Event
|
||||||
public string CallerIdName { get; set; }
|
public string CallerIdName { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the context.
|
/// Gets or sets the context.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Context { get; set; }
|
public string Context { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the extension.
|
/// Gets or sets the extension.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Extension { get; set; }
|
public string Extension { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the priority.
|
/// Gets or sets the priority.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Priority { get; set; }
|
public string Priority { get; set; }
|
||||||
|
|
||||||
|
|
|
@ -120,8 +120,8 @@ namespace AsterNET.Manager
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event EventHandler<AgentLogoffEvent> AgentLogoff;
|
public event EventHandler<AgentLogoffEvent> AgentLogoff;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An AgentRingNoAnswer is triggered when an agent was rang and did not answer.<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.<br/>
|
/// To enable AgentRingNoAnswer you have to set eventwhencalled = yes in queues.conf.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event EventHandler<AgentRingNoAnswerEvent> AgentRingNoAnswer;
|
public event EventHandler<AgentRingNoAnswerEvent> AgentRingNoAnswer;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue