Copies the items of the collection to an AudioType array, starting at the specified array index.
public void CopyTo(Leadtools.Mediastreaming.AudioType[] array,int arrayIndex)
Public Sub CopyTo( _ByVal array() As Leadtools.Mediastreaming.AudioType, _ByVal arrayIndex As Integer _)
public:void CopyTo(Leadtools.Mediastreaming.array<AudioType^>^ array,int 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
| Exception | Description | 
|---|---|
| System.ArgumentNullException | The 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 | 
Copies the items of the collection to a AudioType array, starting at the specified array index.
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();// retrieve a copy of the Live StreamsLiveStreams Streams = _server.GetLiveStreams();// create live stream just to demonstrate using audio types CopyToLiveStream stream = Streams.CreateLiveStream();//Get the Audio TypesAudioTypes AudioTypes = stream.AudioTypes;// allocate a new array for the copied AudioTypesAudioType[] copiedAudioTypes = new AudioType[AudioTypes.Count];// copy themAudioTypes.CopyTo(copiedAudioTypes, 0);// set the result to what we expect_result = (copiedAudioTypes.Length == AudioTypes.Count);}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MediaStreamingPublic _server As Server = NothingPublic _result As Boolean = FalsePublic Sub CopyToExample()Try' create an instance of the server object_server = New Leadtools.MediaStreaming.Server()' retrieve a copy of the Live StreamsDim Streams As LiveStreams = _server.GetLiveStreams()' create live stream just to demonstrate using audio types index ofDim stream As LiveStream = Streams.CreateLiveStream()'Get the Audio TypesDim AudioTypes As AudioTypes = stream.AudioTypes' allocate a new array for the copied AudioTypesDim copiedAudioTypes As AudioType() = New AudioType(AudioTypes.Count - 1) {}' copy themAudioTypes.CopyTo(copiedAudioTypes, 0)' set the result to what we expect_result = (copiedAudioTypes.Length = AudioTypes.Count)Catch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
