asternet/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs
richard ralston 25e34f0b25 Adding documentation
Source Tree was giving trouble so commiting through Github app
2016-10-28 09:07:55 +02:00

31 lines
1.2 KiB
C#

namespace AsterNET.Manager.Event
{
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>
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>
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>
public string SubEvent { get; set; }
public string Env { get; set; }
#region Constructor - AsyncAGIEvent(ManagerConnection source)
public AsyncAGIEvent(ManagerConnection source)
: base(source)
{
}
#endregion
}
}