asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ConfbridgeListCompleteEvent.cs

29 lines
1,007 B
C#
Raw Normal View History

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>
/// An ConfbridgeListCompleteEvent is triggered after the state of all Confbridges has been
/// reported in response to an ConfbridgeListAction.
///
/// 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" />
public class ConfbridgeListCompleteEvent : ResponseEvent
2014-01-03 16:39:46 +00:00
{
2018-09-06 23:12:06 +00:00
/// <summary>
/// Creates a new <see cref="ConfbridgeListCompleteEvent"/> using the given <see cref="ManagerConnection"/>.
/// </summary>
/// <param name="source"></param>
public ConfbridgeListCompleteEvent(ManagerConnection source)
: base(source)
{
}
2014-01-03 16:39:46 +00:00
}
}
2018-09-06 23:12:06 +00:00