OperationBindingCollection.Insert(Int32, OperationBinding) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Aggiunge l'istanza specificata di OperationBinding all'oggetto OperationBindingCollection in corrispondenza dell'indice in base zero specificato.
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)
Parametri
- index
- Int32
Indice a base zero in corrispondenza del quale inserire il parametro bindingOperation
.
- bindingOperation
- OperationBinding
Oggetto OperationBinding da aggiungere alla raccolta.
Esempio
Nell'esempio seguente viene illustrato l'uso del metodo 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())
Commenti
Se il numero di elementi nell'insieme è già uguale alla capacità della raccolta, la capacità viene raddoppiata riassegnando automaticamente la matrice interna prima dell'inserimento del nuovo elemento.
Se il parametro è uguale a Count, il bindingOperation
index
parametro viene aggiunto alla fine di OperationBindingCollection.
Gli elementi dopo lo spostamento del punto di inserimento per ospitare il nuovo elemento.