2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A UnparkedCallEvent is triggered when a channel that has been parked is resumed.<br/>
|
2015-01-04 14:26:32 +00:00
|
|
|
/// It is implemented in res/res_features.c<br/>
|
2013-01-18 15:55:50 +00:00
|
|
|
/// 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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|