C#
VB
C++
Retrieves the index matching the specified AudioType's FriendlyName. The index matching to the specified AudioType's FriendlyName
public int IndexOf(string FriendlyName)
Public Overloads Function IndexOf( _ByVal FriendlyName As String _) As Integer
public:int IndexOf(String^ FriendlyName)
FriendlyName
A string containing the audio type's FriendlyName. Refer to ErrorCode for further details on error messages.
The index matching to the specified AudioType's FriendlyName
using Leadtools;using Leadtools.MediaStreaming;public Server _server = null;public bool _result = false;public void IndexContainsExample(){try{// create an instance of the server object_server = new Leadtools.MediaStreaming.Server();// retrieve a copy of the Live StreamsLiveStreams Streams = _server.GetLiveStreams();// create live stream just to demonstrate using audio types IndexOf and ContainsLiveStream stream = Streams.CreateLiveStream();//Get the Audio TypesAudioTypes AudioTypes = stream.AudioTypes;// get the AudioType object of the friendly name "192 kbps, 44.1 KHz, stereo"// this is equal to:// AudioType AudioType = AudioTypes["192 kbps, 44.1 KHz, stereo"];int nIndex = AudioTypes.IndexOf("192 kbps, 44.1 KHz, stereo");AudioType AudioType = null;if (nIndex > -1)// access the AudioType via the collection indexerAudioType = AudioTypes[nIndex];// check whether the collection contains this item// (it should we just got it with IndexOf above)if (AudioTypes.Contains(AudioType)){// set the result to what we expect_result = true;}else{_result = false;}}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MediaStreamingPublic _server As Server = NothingPublic _result As Boolean = FalsePublic Sub IndexContainsExample()Try' create an instance of the server object_server = New Leadtools.MediaStreaming.Server()' retrieve a copy of the Live StreamsDim Streams As LiveStreams = _server.GetLiveStreams()' create live stream just to demonstrate using audio types index ofDim stream As LiveStream = Streams.CreateLiveStream()'Get the Audio TypesDim AudioTypes As AudioTypes = stream.AudioTypes' get the AudioType object of the friendly name "192 kbps, 44.1 KHz, stereo"' this is equal to:' AudioType AudioType = AudioTypes["192 kbps, 44.1 KHz, stereo"];Dim nIndex As Integer = AudioTypes.IndexOf("192 kbps, 44.1 KHz, stereo")Dim AudioType As AudioType = NothingIf nIndex > -1 Then' access the AudioType via the collection indexerAudioType = AudioTypes(nIndex)End If' check whether the collection contains this item' (it should we just got it with IndexOf above)If AudioTypes.Contains(AudioType) Then' set the result to what we expect_result = TrueElse_result = FalseEnd IfCatch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
