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

26 lines
616 B
C#

namespace AsterNET.Manager.Event
{
/// <summary>
/// A UnparkedCallEvent is triggered when a channel that has been parked is resumed.<br/>
/// It is implemented in res/res_features.c<br/>
/// Available since Asterisk 1.2
/// </summary>
public class UnparkedCallEvent : AbstractParkedCallEvent
{
private string from;
/// <summary>
/// Get/Set the name of the channel that parked the call.
/// </summary>
public string From
{
get { return this.from; }
set { this.from = value; }
}
public UnparkedCallEvent(ManagerConnection source)
: base(source)
{
}
}
}