2014-04-07 10:35:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2016-10-28 07:07:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
2014-04-07 10:35:39 +00:00
|
|
|
|
namespace AsterNET.Manager.Event
|
|
|
|
|
{
|
|
|
|
|
public class FailedACLEvent : ManagerEvent
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public FailedACLEvent()
|
|
|
|
|
: base() { }
|
|
|
|
|
|
|
|
|
|
public FailedACLEvent(ManagerConnection source)
|
|
|
|
|
: base(source) { }
|
|
|
|
|
|
2016-10-28 07:07:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
|
|
|
|
|
/// </summary>
|
2014-04-07 10:35:39 +00:00
|
|
|
|
public string LocalAddress { get; set; }
|
2016-10-28 07:07:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
|
|
|
|
|
/// </summary>
|
2014-04-07 10:35:39 +00:00
|
|
|
|
public string RemoteAddress { get; set; }
|
2016-10-28 07:07:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <b>Available since : </b> <see href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Documentation" target="_blank" alt="Asterisk 12 wiki docs">Asterisk 12</see>.
|
|
|
|
|
/// </summary>
|
2014-04-07 10:35:39 +00:00
|
|
|
|
public string ACLName { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|