Item(Int32) Property

Summary
Retrieves the AudioType at the specified index.
Syntax
C#
C++/CLI
public AudioType Item( 
   int index 
) { get; } 
public: 
property AudioType^ Item { 
   AudioType^ get(int index); 
} 

Parameters

index
Zero-based integer index of the audio type to retrieve.

Property Value

The AudioType found at the given index.The AudioType found at the given index.

Example
C#
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 Streams 
      LiveStreams Streams = _server.GetLiveStreams(); 
 
      // create live stream just to demonstrate using audio types IndexOf and Contains 
      LiveStream stream = Streams.CreateLiveStream(); 
 
      //Get the Audio Types  
      AudioTypes 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 indexer 
         AudioType = 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; 
   } 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaStreaming Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.