2014-01-03 16:39:46 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
2014-01-03 16:39:46 +00:00
{
2018-09-06 23:12:06 +00:00
/// <summary>
2018-09-21 22:12:58 +00:00
/// An ConfbridgeListCompleteEvent is triggered after the state of all Confbridges has been reported in response to an ConfbridgeListAction.<br/>
2018-09-06 23:12:06 +00:00
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions">https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions</see>
/// </summary>
/// /// <seealso cref="ConfbridgeListEvent" />
2014-01-09 10:09:40 +00:00
public class ConfbridgeListCompleteEvent : ResponseEvent
2014-01-03 16:39:46 +00:00
{
2018-09-06 23:12:06 +00:00
/// <summary>
2018-09-21 22:12:58 +00:00
/// Creates a new <see cref="ConfbridgeListCompleteEvent"/>.
2018-09-06 23:12:06 +00:00
/// </summary>
2018-09-21 22:12:58 +00:00
/// <param name="source"><see cref="ManagerConnection"/></param>
2014-01-09 10:09:40 +00:00
public ConfbridgeListCompleteEvent ( ManagerConnection source )
: base ( source )
{
}
2014-01-03 16:39:46 +00:00
}
}
2018-09-06 23:12:06 +00:00