using System; using AsterNET.Manager.Event; namespace AsterNET.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 (StatusCompleteEvent); } } }