public int Count { get; }
An integer value indicating the total count of audio types.
using Leadtools;
using Leadtools.MediaStreaming;
public Server _server = null;
public bool _result = false;
public void PrintAudioTypesExample()
{
try
{
int Count = 0;
string strAudioTypes = "";
// create an instance of the server object
_server = new Leadtools.MediaStreaming.Server();
// retrieve a copy of the Live Streams
LiveStreams Streams = _server.GetLiveStreams();
// create live stream just to enumerate the audio types
LiveStream stream = Streams.CreateLiveStream();
//Get the Audio Types
AudioTypes AudioTypes = stream.AudioTypes;
//Get the Audio Types count
Count = AudioTypes.Count;
// print the stream audio types to a string
strAudioTypes += string.Format("--- Live Stream Audio Types (count = {0}) ---\n\n", Count.ToString());
int nIndex = 0;
foreach (AudioType AudioType in AudioTypes)
{
strAudioTypes += string.Format("AudioType[{0}]: {1}.\n", nIndex.ToString(), AudioType.FriendlyName);
if (AudioType.Selected)
strAudioTypes += string.Format("AudioType[{0}]: is selected\n", nIndex.ToString());
nIndex++;
}
// display a message contains the AudioTypes information string
MessageBox.Show(strAudioTypes, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information);
_result = true;
}
catch (Exception)
{
_result = false;
}
}