OperationMessageCollection.CopyTo(OperationMessage[], Int32) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Zkopíruje celý OperationMessageCollection objekt do kompatibilního jednorozměrného pole typu OperationMessage, počínaje zadaným indexem založeném na nule cílového pole.
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)
Parametry
- array
- OperationMessage[]
Pole typu OperationMessage , které slouží jako cíl akce kopírování.
- index
- Int32
Index založený na nule, do kterého se má spustit umístění zkopírované kolekce.
Příklady
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