MessageCollection::CopyTo Method (array<Message^>^, Int32)

 

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

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
void CopyTo(
	array<Message^>^ array,
	int index
)

Parameters

array
Type: array<System.Web.Services.Description::Message^>^

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

index
Type: System::Int32

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

The following example demonstrates the use of the CopyTo method.

// Create a Message Array.
array<Message^>^myMessages = gcnew array<Message^>(myServiceDescription->Messages->Count);

// Copy MessageCollection to an array.
myServiceDescription->Messages->CopyTo( myMessages, 0 );
Console::WriteLine( "" );
Console::WriteLine( "Displaying Messages that were copied to Messagearray ..." );
Console::WriteLine( "" );
for ( int i = 0; i < myServiceDescription->Messages->Count; ++i )
   Console::WriteLine( "Message Name : {0}", myMessages[ i ]->Name );

.NET Framework
Available since 1.1
Return to top
Show: