OperationMessageCollection.CopyTo(OperationMessage[], Int32) Method

Definition

Copies the entire OperationMessageCollection to a compatible one-dimensional array of type OperationMessage, starting at the specified zero-based index of the target array.

public:
 void CopyTo(cli::array <System::Web::Services::Description::OperationMessage ^> ^ array, int index);
public void CopyTo (System.Web.Services.Description.OperationMessage[] array, int index);
member this.CopyTo : System.Web.Services.Description.OperationMessage[] * int -> unit
Public Sub CopyTo (array As OperationMessage(), index As Integer)

Parameters

array
OperationMessage[]

An array of type OperationMessage serving as the destination for the copy action.

index
Int32

The zero-based index at which to start placing the copied collection.

Examples

array<OperationMessage^>^myCollection = gcnew array<OperationMessage^>(myOperationMessageCollection->Count);
myOperationMessageCollection->CopyTo( myCollection, 0 );
Console::WriteLine( "Operation name(s) :" );
for ( int i = 0; i < myCollection->Length; i++ )
{
   Console::WriteLine( " {0}", myCollection[ i ]->Operation->Name );
}
OperationMessage[] myCollection =
   new OperationMessage[myOperationMessageCollection.Count];
myOperationMessageCollection.CopyTo(myCollection, 0);
Console.WriteLine("Operation name(s) :");
for (int i = 0; i < myCollection.Length ; i++)
{
   Console.WriteLine(" " + myCollection[i].Operation.Name);
}
Dim myCollection(myOperationMessageCollection.Count -1 ) _
   As OperationMessage
myOperationMessageCollection.CopyTo(myCollection, 0)
Console.WriteLine("Operation name(s) :")
Dim i As Integer
For i = 0 To myCollection.Length - 1
   Console.WriteLine(" " & myCollection(i).Operation.Name)
Next i

Applies to