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

24 lines
568 B
C#
Raw Normal View History

2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
{
/// <summary>
/// A HoldEvent is triggered by the SIP channel driver when a channel is put on hold.<br/>
/// It is implemented in <code>channels/chan_sip.c</code>.<br/>
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.event.UnholdEvent" />
public class HoldEvent : ManagerEvent
{
private string status;
public string Status
{
get { return this.status; }
set { this.status = value; }
}
public HoldEvent(ManagerConnection source)
: base(source)
{
}
}
}