Error processing SSI file
LEADTOOLS Multimedia (Leadtools.MediaStreaming assembly)

Show in webframe

CopyTo Method (AudioTypes)






The one-dimensional, zero-based array that is the destination of the items to be copied from the collection.
The zero-based index in the destination array at which copying begins.
Copies the items of the collection to an AudioType array, starting at the specified array index.
Syntax
public void CopyTo( 
   AudioType[] array,
   int arrayIndex
)
'Declaration
 
Public Sub CopyTo( _
   ByVal array() As AudioType, _
   ByVal arrayIndex As Integer _
) 
'Usage
 
Dim instance As AudioTypes
Dim array() As AudioType
Dim arrayIndex As Integer
 
instance.CopyTo(array, arrayIndex)
public:
void CopyTo( 
   array<AudioType^>^ array,
   int 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
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 AudioType array, starting at the specified array index.
Example
Copy Code  
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 index of
     Dim stream As LiveStream = Streams.CreateLiveStream()

     'Get the Audio Types 
     Dim AudioTypes As AudioTypes = stream.AudioTypes

     ' allocate a new array for the copied AudioTypes
     Dim copiedAudioTypes As AudioType() = New AudioType(AudioTypes.Count - 1) {}

     ' copy them
     AudioTypes.CopyTo(copiedAudioTypes, 0)

     ' set the result to what we expect
     _result = (copiedAudioTypes.Length = AudioTypes.Count)
  Catch e1 As Exception
     _result = False
  End Try
End Sub
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 Types 
      AudioTypes AudioTypes = stream.AudioTypes;

      // allocate a new array for the copied AudioTypes
      AudioType[] copiedAudioTypes = new AudioType[AudioTypes.Count];

      // copy them
      AudioTypes.CopyTo(copiedAudioTypes, 0);

      // set the result to what we expect
      _result = (copiedAudioTypes.Length == AudioTypes.Count);
   }
   catch (Exception)
   {
      _result = false;
   }
}
Requirements

Target Platforms

See Also

Reference

AudioTypes Class
AudioTypes Members

Error processing SSI file
Leadtools.MediaStreaming requires a Multimedia or Multimedia Suite license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features