using System;
namespace Asterisk.NET.Manager.Action
{
///
/// The StatusAction requests the state of all active channels.
/// For each active channel a StatusEvent is generated. After the state of all
/// channels has been reported a StatusCompleteEvent is generated.
///
///
///
public class StatusAction : ManagerActionEvent
{
///
/// Get the name of this action, i.e. "Status".
///
public override string Action
{
get { return "Status"; }
}
public override Type ActionCompleteEventClass()
{
return typeof(Event.StatusCompleteEvent);
}
///
/// Creates a new StatusAction.
///
public StatusAction()
{
}
}
}