29 lines
1 KiB
C#
29 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// <summary>
|
|
/// An ConfbridgeListRoomsCompleteEvent is triggered after the state of all ConfBridgeRooms has been
|
|
/// reported in response to an ConfbridgeListRoomsAction.
|
|
///
|
|
/// 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="ConfbridgeListRoomsEvent" />
|
|
public class ConfbridgeListRoomsCompleteEvent : ResponseEvent
|
|
{
|
|
/// <summary>
|
|
/// Creates a new <see cref="ConfbridgeListRoomsCompleteEvent"/> using the given <see cref="ManagerConnection"/>.
|
|
/// </summary>
|
|
/// <param name="source"></param>
|
|
public ConfbridgeListRoomsCompleteEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
}
|