2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A ParkedCallGiveUpEvent is triggered when a channel that has been parked is hung up.<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 ParkedCallGiveUpEvent : AbstractParkedCallEvent
|
|
|
|
{
|
|
|
|
public ParkedCallGiveUpEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
2016-10-28 07:07:55 +00:00
|
|
|
{
|
|
|
|
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|