namespace AsterNET.Manager.Event { /// /// A HangupRequestEvent is raised when a channel is hang up.
///
public class HangupRequestEvent : AbstractChannelEvent { /// public HangupRequestEvent(ManagerConnection source) : base(source) { } /// /// Uniqueid of the oldest channel associated with this channel. /// public string LinkedId { get; set; } /// /// Get/Set the cause of the hangup. /// public int Cause { get; set; } } }