Copies the items of the collection to a LiveStreamControl array, starting at the specified array index.
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)
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:
Copies the items of the collection to a LiveStreamControl array, starting at the specified array index.
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 ControlsLiveStreamControls Streams = _server.GetLiveStreamControls();// allocate a new array for the copied Live Stream ControlsLiveStreamControl[] copiedStreams = new LiveStreamControl[Streams.Count];// copy themStreams.CopyTo(copiedStreams, 0);// set the result to what we expect_result = (copiedStreams.Length == Streams.Count);}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MediaStreamingPublic _server As Server = NothingPublic _result As Boolean = FalsePublic Sub LiveStreamControlsCopyToExample()Try' create an instance of the server object_server = New Leadtools.MediaStreaming.Server()' retrieve a copy of the Live Stream ControlsDim Streams As LiveStreamControls = _server.GetLiveStreamControls()' allocate a new array for the copied Live Stream ControlsDim copiedStreams As LiveStreamControl() = New LiveStreamControl(Streams.Count - 1) {}' copy themStreams.CopyTo(copiedStreams, 0)' set the result to what we expect_result = (copiedStreams.Length = Streams.Count)Catch generatedExceptionName As Exception_result = FalseEnd TryEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
