2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// An UnlinkEvent is triggered when a link between two voice channels is discontinued,
|
|
|
|
/// for example, just before call completion.
|
|
|
|
/// </summary>
|
|
|
|
public class UnlinkEvent : BridgeEvent
|
|
|
|
{
|
|
|
|
public UnlinkEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
isunlink = true;
|
|
|
|
bridgeState = BridgeStates.BRIDGE_STATE_UNLINK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|