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

30 lines
849 B
C#
Raw Normal View History

2015-01-03 15:37:29 +00:00
namespace AsterNET.Manager.Action
2014-01-03 16:39:46 +00:00
{
public class ConfbridgeSetSingleVideoSrcAction : ManagerAction
{
/// <summary>
2015-01-03 15:37:29 +00:00
/// Stops recording a specified conference.
2014-01-03 16:39:46 +00:00
/// </summary>
public ConfbridgeSetSingleVideoSrcAction()
2015-01-03 15:37:29 +00:00
{
}
2014-01-03 16:39:46 +00:00
2015-01-03 15:37:29 +00:00
/// <summary>
/// Stops recording a specified conference.
/// </summary>
/// <param name="conference"></param>
2014-01-03 16:39:46 +00:00
public ConfbridgeSetSingleVideoSrcAction(string conference, string channel)
2015-01-03 15:37:29 +00:00
{
Conference = conference;
Channel = channel;
}
public string Conference { get; set; }
public string Channel { get; set; }
public override string Action
{
get { return "ConfbridgeSetSingleVideoSrc"; }
}
2014-01-03 16:39:46 +00:00
}
2015-01-03 15:37:29 +00:00
}