IndexOf(String) Method

Summary
Returns the index of the first occurrence of a Client object whose IP address matches the given IP address string.
Syntax
C#
C++/CLI
public int IndexOf( 
   string IPAddress 
) 
public: 
int IndexOf(  
   String^ IPAddress 
)  

Parameters

IPAddress
A value representing the IP address of the Client to find.

Return Value

The zero-based index position of the Client item found, or -1 if not found.

Remarks

Returns the index of the first occurrence of a Client object whose IP address matches the given IP address string.

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(); 
 
      // edit network properties 
      NetworkProperties netProps = _server.GetNetworkProperties(); 
      string HttpUrl = "http://" + netProps.ActualIPAddress + ":" + netProps.Port + "/DaDa_H264.mp4"; 
      netProps.MediaFolder = @"C:\LEADTOOLS22\Resources\Media"; 
      _server.SetNetworkProperties(netProps); 
 
      // start the server 
      _server.Start(); 
 
      // make sure that there is some clients connected to the server. 
      System.Diagnostics.Process.Start(HttpUrl); 
      MessageBox.Show("Attempting to playback stream in default browser using: " + HttpUrl 
         + "\n Press OK button AFTER video starts playing"); 
      // for instance, a client with (IP = 10.0.4.63) is connected to the server. 
      // change this for your active client's IP Address. 
 
      // retrieve collection of clients 
      Clients clients = _server.GetClients(); 
 
      // get the client object of IP address "10.0.4.63" 
      // this is equal to: 
      // Client client = clients["10.0.4.63"]; 
      int nIndex = clients.IndexOf("10.0.4.63"); 
      Client client = null; 
 
      if (nIndex > -1) 
         // access the client via the collection indexer 
         client = clients[nIndex]; 
 
      // check whether the collection contains this item 
      // (it should we just got it with IndexOf above) 
      if (clients.Contains(client)) 
      { 
         // set the result to what we expect 
         _result = true; 
      } 
      else 
      { 
         _result = false; 
      } 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
Requirements

Target Platforms

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

Leadtools.MediaStreaming Assembly

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