MessageCollection::CopyTo Method (array<Message^>^, Int32)
.NET Framework (current version)
Copies the entire MessageCollection to a compatible one-dimensional array of type Message, starting at the specified zero-based index of the target array.
Assembly: System.Web.Services (in System.Web.Services.dll)
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
Available since 1.1
Show: