25 lines
474 B
C#
25 lines
474 B
C#
using System;
|
|
|
|
namespace AsterNET.Manager.Action
|
|
{
|
|
/// <summary>
|
|
/// The LogoffAction causes the server to close the connection.
|
|
/// </summary>
|
|
public class LogoffAction : ManagerAction
|
|
{
|
|
/// <summary>
|
|
/// Get the name of this action, i.e. "Logoff".
|
|
/// </summary>
|
|
override public string Action
|
|
{
|
|
get { return "Logoff"; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new LogoffAction.
|
|
/// </summary>
|
|
public LogoffAction()
|
|
{
|
|
}
|
|
}
|
|
} |