14 lines
392 B
C#
14 lines
392 B
C#
namespace Asterisk.NET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A DisconnectEvent is triggered when the connection to the asterisk server is lost.<br/>
|
|
/// It is a pseudo event not directly related to an asterisk generated event.
|
|
/// </summary>
|
|
public class DisconnectEvent : ConnectionStateEvent
|
|
{
|
|
public DisconnectEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
} |