Copies the items of the collection to a Device array, starting at the specified array index.
public void CopyTo(
Leadtools.Mediastreaming.Device[] array,
int arrayIndex
)
Public Sub CopyTo( _
ByVal array() As Leadtools.Mediastreaming.Device, _
ByVal arrayIndex As Integer _
)
public:
void CopyTo(
Leadtools.Mediastreaming.array<Device^>^ 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 Device 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 Streams
LiveStreams Streams = _server.GetLiveStreams();
// create live stream just to demonstrate using audio types CopyTo
LiveStream stream = Streams.CreateLiveStream();
//Get the Audio Devices
Devices Devices = stream.AudioDevices;
// allocate a new array for the copied Devices
Device[] copiedDevices = new Device[Devices.Count];
// copy them
Devices.CopyTo(copiedDevices, 0);
// set the result to what we expect
_result = (copiedDevices.Length == Devices.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()
' retrieve a copy of the Live Streams
Dim Streams As LiveStreams = _server.GetLiveStreams()
' create live stream just to demonstrate using audio types CopyTo
Dim stream As LiveStream = Streams.CreateLiveStream()
'Get the Audio Devices
Dim Devices As Devices = stream.AudioDevices
' allocate a new array for the copied Devices
Dim copiedDevices As Device() = New Device(Devices.Count - 1) {}
' copy them
Devices.CopyTo(copiedDevices, 0)
' set the result to what we expect
_result = (copiedDevices.Length = Devices.Count)
Catch e1 As Exception
_result = False
End Try
End Sub
Products |
Support |
Feedback: CopyTo Method (Devices) - Leadtools.MediaStreaming |
Introduction |
Help Version 19.0.2017.6.16
|
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
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.