namespace AsterNET.Manager.Action { /// /// The LogoffAction causes the server to close the connection. /// public class LogoffAction : ManagerAction { /// /// Get the name of this action, i.e. "Logoff". /// public override string Action { get { return "Logoff"; } } } }