Partager via


OperationBindingCollection.Insert(Int32, OperationBinding) Méthode

Définition

Ajoute l'instance OperationBinding spécifiée à OperationBindingCollection à l'index de base zéro spécifié.

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

Paramètres

index
Int32

Index de base zéro au niveau duquel insérer le paramètre bindingOperation.

bindingOperation
OperationBinding

Objet OperationBinding à ajouter à la collection.

Exemples

L'exemple suivant illustre l'utilisation de la méthode Insert.

// Insert the OperationBinding of the Add operation at index 0.
myOperationBindingCollection->Insert( 0, addOperationBinding );
Console::WriteLine( "\nInserted the OperationBinding of the "
"Add operation in the collection." );

// Get the index of the OperationBinding of the Add
// operation from the collection.
int index = myOperationBindingCollection->IndexOf( addOperationBinding );
Console::WriteLine( "\nThe index of the OperationBinding of the Add operation : {0}", index );
// Insert the OperationBinding of the Add operation at index 0.
myOperationBindingCollection.Insert(0, addOperationBinding);
Console.WriteLine("\nInserted the OperationBinding of the " +
   "Add operation in the collection.");

// Get the index of the OperationBinding of the Add
// operation from the collection.
int index = myOperationBindingCollection.IndexOf(addOperationBinding);
Console.WriteLine("\nThe index of the OperationBinding of the " +
   "Add operation : " + index);
' Insert the OperationBinding of the Add operation at index 0.
myOperationBindingCollection.Insert(0, addOperationBinding)
Console.WriteLine(ControlChars.NewLine & _
   "Inserted the OperationBinding of the " & _
   "Add operation in the collection.")

' Get the index of the OperationBinding of the Add
' operation from the collection.
Dim index As Integer = myOperationBindingCollection.IndexOf( _
   addOperationBinding)
Console.WriteLine(ControlChars.NewLine & _
   "The index of the OperationBinding of the " & _
   "Add operation : " & index.ToString())

Remarques

Si le nombre d’éléments de la collection est déjà égal à la capacité de la collection, la capacité est doublée en réaffectant automatiquement le tableau interne avant l’insertion du nouvel élément.

Si le index paramètre est égal à Count, le bindingOperation paramètre est ajouté à la fin de .OperationBindingCollection

Les éléments après le point d’insertion se déplacent vers le bas pour prendre en charge le nouvel élément.

S’applique à