←Select platform

CopyTo Method

Summary

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

Syntax
C#
VB
C++
public void CopyTo( 
   LiveStreamControl[] array, 
   int arrayIndex 
) 
Public Sub CopyTo( 
   ByVal array() As LiveStreamControl, 
   ByVal arrayIndex As Integer 
) 
public:  
   void CopyTo( 
      array<LiveStreamControl^>^ array, 
      Int32 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

The following exceptions can be thrown:

Remarks

Copies the items of the collection to a LiveStreamControl 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 LiveStreamControlsCopyToExample() 
{ 
   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(); 
 
      // allocate a new array for the copied Live Stream Controls 
      LiveStreamControl[] copiedStreams = new LiveStreamControl[Streams.Count]; 
 
      // copy them 
      Streams.CopyTo(copiedStreams, 0); 
 
      // set the result to what we expect 
      _result = (copiedStreams.Length == Streams.Count); 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
Imports Leadtools 
Imports Leadtools.MediaStreaming 
 
 
Public _server As Server = Nothing 
Public _result As Boolean = False 
 
Public Sub LiveStreamControlsCopyToExample() 
   Try 
      ' create an instance of the server object 
      _server = New Leadtools.MediaStreaming.Server() 
 
      ' retrieve a copy of the Live Stream Controls 
      Dim Streams As LiveStreamControls = _server.GetLiveStreamControls() 
 
      ' allocate a new array for the copied Live Stream Controls 
      Dim copiedStreams As LiveStreamControl() = New LiveStreamControl(Streams.Count - 1) {} 
 
      ' copy them 
      Streams.CopyTo(copiedStreams, 0) 
 
      ' set the result to what we expect 
      _result = (copiedStreams.Length = Streams.Count) 
   Catch generatedExceptionName As Exception 
      _result = False 
   End Try 
End Sub 

Requirements

Target Platforms

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

Leadtools.MediaStreaming Assembly