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
716 B
C#
22 lines
716 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// An AgentCallbackLoginEvent is triggered when an agent is successfully logged in using AgentCallbackLogin.<br />
|
|
/// It is implemented in channels/chan_agent.c
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.AgentCallbackLogoffEvent" />
|
|
public class AgentCallbackLoginEvent : ManagerEvent
|
|
{
|
|
public AgentCallbackLoginEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get/Set the name of the agent that logged in.
|
|
/// </summary>
|
|
public string Agent { get; set; }
|
|
|
|
public string LoginChan { get; set; }
|
|
}
|
|
} |