←Select platform

IndexOf(LiveStreamControl) Method

Summary

Determines the index of a specific LiveStreamControl item in the list.

Syntax
C#
C++/CLI
public int IndexOf( 
   LiveStreamControl item 
) 
public:  
   Int32 IndexOf( 
      LiveStreamControl^ item 
   ) 

Parameters

item

The LiveStreamControl item to locate in the list.

Return Value

>-1 The zero-based index of the found item.
-1 The item was not found.
Example
C#
using Leadtools; 
using Leadtools.MediaStreaming; 
 
 
 
public Server _server = null; 
public bool _result = false; 
 
public void LiveStreamControlsIndexContainsExample() 
{ 
   try 
   { 
      // create an instance of the server object 
      _server = new Leadtools.MediaStreaming.Server(); 
 
      // retrieve a copy of the Live Stream Controls 
      LiveStreamControls Streams = _server.GetLiveStreamControls(); 
 
      // get the stream at index 0 
      LiveStreamControl stream = Streams[0]; 
 
      // make sure the stream object is contained in the collection 
      if (!Streams.Contains(stream)) 
         return; 
                
      // get the index of the stream object 
      int index = Streams.IndexOf(stream); 
 
      if (index != 0) 
         return; 
                
      // get the stream handle 
      int handle = stream.Handle; 
 
      // get the index of the handle 
      index = Streams.IndexOf(handle); 
 
      if (index != 0) 
         return; 
 
      // get the index of the handle, using Find 
      index = Streams.Find(handle); 
 
      if (index != 0) 
         return; 
 
      _result = true; 
   } 
   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.