2013-01-18 15:55:50 +00:00
|
|
|
using System;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Action
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <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>
|
|
|
|
override public string Action
|
|
|
|
{
|
|
|
|
get { return "Ping"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new PingAction.
|
|
|
|
/// </summary>
|
|
|
|
public PingAction()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|