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

16 lines
419 B
C#

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>
public override string Action
{
get { return "Logoff"; }
}
}
}