Moved ListCalls into VideoCodecBase

This commit is contained in:
Heath Volmer
2017-09-21 11:29:13 -06:00
parent 639e1810db
commit 69e76bdb3a
4 changed files with 12 additions and 11 deletions

View File

@@ -281,17 +281,6 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
}
/// <summary>
///
/// </summary>
public void ListCalls()
{
var sb = new StringBuilder();
foreach (var c in ActiveCalls)
sb.AppendFormat("{0} {1} -- {2} {3}\r", c.Id, c.Number, c.Name, c.Status);
Debug.Console(1, "{0}", sb.ToString());
}
#region IRoutingOutputs Members
public RoutingPortCollection<RoutingOutputPort> OutputPorts

View File

@@ -150,6 +150,18 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
public StringFeedback SharingSourceFeedback { get; private set; }
#endregion
// **** DEBUGGING THINGS ****
/// <summary>
///
/// </summary>
public virtual void ListCalls()
{
var sb = new StringBuilder();
foreach (var c in ActiveCalls)
sb.AppendFormat("{0} {1} -- {2} {3}\r", c.Id, c.Number, c.Name, c.Status);
Debug.Console(1, "{0}", sb.ToString());
}
}
/// <summary>