Sdílet prostřednictvím


OperationBindingCollection.Add(OperationBinding) Metoda

Definice

Přidá zadaný OperationBinding parametr na konec .OperationBindingCollection

public:
 int Add(System::Web::Services::Description::OperationBinding ^ bindingOperation);
public int Add (System.Web.Services.Description.OperationBinding bindingOperation);
member this.Add : System.Web.Services.Description.OperationBinding -> int
Public Function Add (bindingOperation As OperationBinding) As Integer

Parametry

bindingOperation
OperationBinding

Přidá OperationBinding se do kolekce.

Návraty

Index založený na nule, do kterého bindingOperation byl přidán parametr.

Příklady

Následující příklad ukazuje použití Add metody .

// Add the Add OperationBinding to the collection.
myOperationBindingCollection->Add( addOperationBinding );
Console::WriteLine( "\nAdded the OperationBinding of the Add"
" operation to the collection." );
// Add the Add OperationBinding to the collection.
myOperationBindingCollection.Add(addOperationBinding);
Console.WriteLine("\nAdded the OperationBinding of the Add" +
   " operation to the collection.");
' Add the Add OperationBinding to the collection.
myOperationBindingCollection.Add(addOperationBinding)
Console.WriteLine(ControlChars.NewLine & _
   "Added the OperationBinding of the Add " & _
   "operation to the collection.")

Platí pro