2014-01-03 16:39:46 +00:00
|
|
|
|
using System;
|
2015-01-03 15:37:29 +00:00
|
|
|
|
using AsterNET.Manager.Event;
|
2014-01-03 16:39:46 +00:00
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
|
namespace AsterNET.Manager.Action
|
2014-01-03 16:39:46 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2015-01-03 15:37:29 +00:00
|
|
|
|
/// Lists data about all active conferences. ConfbridgeListRooms will follow as separate events,
|
|
|
|
|
/// followed by a final event called ConfbridgeListRoomsComplete.
|
2014-01-03 16:39:46 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class ConfbridgeListRoomsAction : ManagerActionEvent
|
|
|
|
|
{
|
|
|
|
|
public override string Action
|
2015-01-03 15:37:29 +00:00
|
|
|
|
{
|
2014-01-03 16:39:46 +00:00
|
|
|
|
get { return "ConfbridgeListRooms"; }
|
2015-01-03 15:37:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Type ActionCompleteEventClass()
|
|
|
|
|
{
|
|
|
|
|
return typeof (ConfbridgeListRoomsCompleteEvent);
|
|
|
|
|
}
|
2014-01-03 16:39:46 +00:00
|
|
|
|
}
|
2015-01-03 15:37:29 +00:00
|
|
|
|
}
|