asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ConfbridgeListAction.cs

40 lines
1.3 KiB
C#
Raw Normal View History

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
{
/*
https://wiki.asterisk.org/wiki/display/AST/ConfBridge+10#ConfBridge10-ConfBridgeAsteriskManagerInterface%28AMI%29Events
Action: ConfbridgeList
Conference: 1111
*/
/// <summary>
2015-01-03 15:37:29 +00:00
/// Lists all users in a particular ConfBridge conference. ConfbridgeList will follow as separate events,
/// followed by a final event called ConfbridgeListComplete
2014-01-03 16:39:46 +00:00
/// </summary>
public class ConfbridgeListAction : ManagerActionEvent
{
2015-01-03 15:37:29 +00:00
/// <summary>
/// Lists all users in a particular ConfBridge conference. ConfbridgeList will follow as separate events,
/// followed by a final event called ConfbridgeListComplete
/// </summary>
/// <param name="conference"></param>
public ConfbridgeListAction(string conference)
{
Conference = conference;
}
2014-01-03 16:39:46 +00:00
public string Conference { get; set; }
public override string Action
2015-01-03 15:37:29 +00:00
{
2014-01-03 16:39:46 +00:00
get { return "ConfbridgeList"; }
2015-01-03 15:37:29 +00:00
}
public override Type ActionCompleteEventClass()
{
return typeof (ConfbridgeListCompleteEvent);
}
2014-01-03 16:39:46 +00:00
}
2015-01-03 15:37:29 +00:00
}