using System; namespace Asterisk.NET.Manager.Action { /// /// The ParkedCallsAction requests a list of all currently parked calls.
/// For each active channel a ParkedCallEvent is generated. After all parked /// calls have been reported a ParkedCallsCompleteEvent is generated. ///
/// /// public class ParkedCallsAction : ManagerActionEvent { /// Get the name of this action, i.e. "ParkedCalls". public override string Action { get { return "ParkedCalls"; } } public override Type ActionCompleteEventClass() { return typeof(Event.ParkedCallsCompleteEvent); } /// /// Creates a new ParkedCallsAction. /// public ParkedCallsAction() { } } }