using System; namespace Asterisk.NET.Manager.Action { /// /// The PingAction will ellicit a 'Pong' response, it is used to keep the manager /// connection open and performs no operation. /// public class PingAction : ManagerAction { /// /// Get the name of this action, i.e. "Ping". /// override public string Action { get { return "Ping"; } } /// /// Creates a new PingAction. /// public PingAction() { } } }