←Select platform

CopyTo Method (Clients)

Summary

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

Syntax

C#
VB
C++
public void CopyTo(  
   Leadtools.Mediastreaming.Client[] array, 
   int arrayIndex 
) 
Public Sub CopyTo( _ 
   ByVal array() As Leadtools.Mediastreaming.Client, _ 
   ByVal arrayIndex As Integer _ 
)  

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#
VB
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(); 
 
      // start the server 
      _server.Start(); 
 
      // make sure that there is some clients connected to the server. 
 
      // retrieve a copy of the Application Properties 
      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; 
   } 
} 
Imports Leadtools 
Imports Leadtools.MediaStreaming 
 
 
Public _server As Server = Nothing 
Public _result As Boolean = False 
 
Public Sub CopyToExample() 
   Try 
      ' create an instance of the server object 
      _server = New Leadtools.MediaStreaming.Server() 
 
      ' start the server 
      _server.Start() 
 
      ' make sure that there is some clients connected to the server. 
 
      ' retrieve a copy of the Application Properties 
      Dim clients As Clients = _server.GetClients() 
 
      ' allocate a new array for the copied clients 
      Dim copiedClients As Client() = New Client(clients.Count - 1) {} 
 
      ' copy them 
      clients.CopyTo(copiedClients, 0) 
 
      ' set the result to what we expect 
      _result = (copiedClients.Length = clients.Count) 
   Catch e1 As Exception 
      _result = False 
   End Try 
End Sub 

Requirements

Target Platforms

See Also

Reference

Clients Class

Clients Members

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaStreaming Assembly