asternet/Asterisk.2013/Asterisk.NET/Manager/Action/PingAction.cs
2015-01-03 15:37:29 +00:00

17 lines
487 B
C#

namespace AsterNET.Manager.Action
{
/// <summary>
/// The PingAction will ellicit a 'Pong' response, it is used to keep the manager
/// connection open and performs no operation.
/// </summary>
public class PingAction : ManagerAction
{
/// <summary>
/// Get the name of this action, i.e. "Ping".
/// </summary>
public override string Action
{
get { return "Ping"; }
}
}
}