namespace AsterNET.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".
///
public override string Action
{
get { return "Ping"; }
}
}
}