Sdílet prostřednictvím


OperationMessageCollection.Insert(Int32, OperationMessage) Metoda

Definice

Přidá zadané OperationMessage do zadaného indexu založeného na OperationMessageCollection nule.

public:
 void Insert(int index, System::Web::Services::Description::OperationMessage ^ operationMessage);
public void Insert (int index, System.Web.Services.Description.OperationMessage operationMessage);
member this.Insert : int * System.Web.Services.Description.OperationMessage -> unit
Public Sub Insert (index As Integer, operationMessage As OperationMessage)

Parametry

index
Int32

Index založený na nule, do kterého chcete vložit operationMessage parametr.

operationMessage
OperationMessage

Přidání OperationMessage do kolekce

Příklady

myOperationMessageCollection->Remove( myInputOperationMessage );

// Display Flow, Input, and Output after removing.
DisplayFlowInputOutput( myOperationMessageCollection, "Remove" );

// Insert the message at index 0 in the collection.
myOperationMessageCollection->Insert( 0, myInputOperationMessage );

// Display Flow, Input, and Output after inserting.
DisplayFlowInputOutput( myOperationMessageCollection, "Insert" );
myOperationMessageCollection.Remove(myInputOperationMessage);

// Display Flow, Input, and Output after removing.
DisplayFlowInputOutput(myOperationMessageCollection, "Remove");

// Insert the message at index 0 in the collection.
myOperationMessageCollection.Insert(0, myInputOperationMessage);

// Display Flow, Input, and Output after inserting.
DisplayFlowInputOutput(myOperationMessageCollection, "Insert");
myOperationMessageCollection.Remove(myInputOperationMessage)

' Display Flow, Input, and Output after removing.
DisplayFlowInputOutput(myOperationMessageCollection, "Remove")

' Insert the message at index 0 in the collection.
myOperationMessageCollection.Insert(0, myInputOperationMessage)

' Display Flow, Input, and Output after inserting.
DisplayFlowInputOutput(myOperationMessageCollection, "Insert")

Poznámky

Pokud se počet položek v kolekci už rovná kapacitě kolekce, kapacita se zdvojnásobí tím, že před vložením nového prvku automaticky přeloží interní pole.

index Pokud je parametr roven Count, operationMessage parametr se přidá na konec kolekce.

Prvky za kurzorem se přesunou dolů, aby se přizpůsobily novému prvku.

Platí pro