asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ConfbridgeListRoomsAction.cs
2015-01-03 15:37:29 +00:00

22 lines
645 B
C#

using System;
using AsterNET.Manager.Event;
namespace AsterNET.Manager.Action
{
/// <summary>
/// Lists data about all active conferences. ConfbridgeListRooms will follow as separate events,
/// followed by a final event called ConfbridgeListRoomsComplete.
/// </summary>
public class ConfbridgeListRoomsAction : ManagerActionEvent
{
public override string Action
{
get { return "ConfbridgeListRooms"; }
}
public override Type ActionCompleteEventClass()
{
return typeof (ConfbridgeListRoomsCompleteEvent);
}
}
}