namespace AsterNET.Manager.Event { /// /// A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. /// /// public class ZapShowChannelsEvent : ResponseEvent { private string signalling; private string context; private string alarm; /// /// Get/Set the signalling of this zap channel.
/// Possible values are: /// ///
public string Signalling { get { return signalling; } set { this.signalling = value; } } /// /// Get/Set the context of this zap channel as defined in zapata.conf. /// public string Context { get { return context; } set { this.context = value; } } /// /// Get/Set the alarm state of this zap channel.
/// This may be one of /// ///
public string Alarm { get { return alarm; } set { this.alarm = value; } } public ZapShowChannelsEvent(ManagerConnection source) : base(source) { } } }