asternet/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs

31 lines
1.2 KiB
C#
Raw Normal View History

2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
{
2015-01-03 15:37:29 +00:00
public class AsyncAGIEvent : ManagerEvent
{
/// <summary>
/// Get/Set the Result
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
2015-01-03 15:37:29 +00:00
public string Result { get; set; }
/// <summary>
/// Get/Set the command ID
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
2015-01-03 15:37:29 +00:00
public string CommandId { get; set; }
/// <summary>
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
/// </summary>
2015-01-03 15:37:29 +00:00
public string SubEvent { get; set; }
public string Env { get; set; }
#region Constructor - AsyncAGIEvent(ManagerConnection source)
2015-01-03 15:37:29 +00:00
public AsyncAGIEvent(ManagerConnection source)
: base(source)
{
}
2015-01-03 15:37:29 +00:00
#endregion
}
}