72ddf45b9f
enable XML documentation output (for intellisense when using as a dll, eg Nuget) update Sandcastle documentation (allows enabling Git Hub Pages, see: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ , uses '/docs' folder)
22 lines
694 B
C#
22 lines
694 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of.
|
|
/// It is implemented in channels/chan_agent.c
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.AgentLoginEvent" />
|
|
public class AgentLogoffEvent : ManagerEvent
|
|
{
|
|
public AgentLogoffEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get/Set the name of the agent that logged off.
|
|
/// </summary>
|
|
public string Agent { get; set; }
|
|
|
|
public string LoginTime { get; set; }
|
|
}
|
|
} |