CopyTo Method (Clients)

Summary
Copies the items of the collection to a Client array, starting at the specified array index.
Syntax
C#
C++/CLI
public void CopyTo( 
   Client[] array, 
   int arrayIndex 
) 
public: 
void CopyTo(  
   array<Client^>^ array, 
   int arrayIndex 
)  

Parameters

array
The one-dimensional, zero-based array that is the destination of the items to be copied from the collection.

arrayIndex
The zero-based index in the destination array at which copying begins.

Exceptions

ExceptionDescription
System.ArgumentNullExceptionThe exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
System.ArgumentOutOfRangeException
System.ArgumentException
Remarks

Copies the items of the collection to a Client array, starting at the specified array index.

Example
C#
using Leadtools; 
using Leadtools.MediaStreaming; 
 
 
 
public Server _server = null; 
public bool _result = false; 
 
public void CopyToExample() 
{ 
   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"); 
 
      // retrieve collection of clients 
      Clients clients = _server.GetClients(); 
 
      // allocate a new array for the copied clients 
      Client[] copiedClients = new Client[clients.Count]; 
 
      // copy them 
      clients.CopyTo(copiedClients, 0); 
 
      // set the result to what we expect 
      _result = (copiedClients.Length == clients.Count); 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
Requirements

Target Platforms

See Also

Reference

Clients Class

Clients Members

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.