2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
public class AsyncAGIEvent : ManagerEvent
|
|
|
|
{
|
2016-10-28 07:07:55 +00:00
|
|
|
/// <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; }
|
2016-10-28 07:07:55 +00:00
|
|
|
/// <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; }
|
2016-10-28 07:07:55 +00:00
|
|
|
/// <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)
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
public AsyncAGIEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|