2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A ConnectEvent is triggered after successful login to the asterisk server.<br />
|
|
|
|
/// It is a pseudo event not directly related to an asterisk generated event.
|
|
|
|
/// </summary>
|
|
|
|
public class ConnectEvent : ConnectionStateEvent
|
|
|
|
{
|
|
|
|
public ConnectEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the version of the protocol.
|
|
|
|
/// </summary>
|
|
|
|
public string ProtocolIdentifier { get; set; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|