BindingCollection.Add(Binding) Méthode

Définition

Ajoute la classe Binding spécifiée à la fin de BindingCollection.

C#
public int Add (System.Web.Services.Description.Binding binding);

Paramètres

binding
Binding

Objet Binding à ajouter à la collection.

Retours

Index de base zéro où le paramètre binding a été ajouté.

Exemples

C#
ServiceDescription myServiceDescription = ServiceDescription.Read("MathService_input.wsdl");
 Console.WriteLine("Total Number of bindings defined are:" + myServiceDescription.Bindings.Count);
  myBinding = myServiceDescription.Bindings[0];

 // Remove the first binding in the collection.
 myServiceDescription.Bindings.Remove(myBinding);
 Console.WriteLine("Successfully removed binding " + myBinding.Name);
 Console.WriteLine("Total Number of bindings defined now are:" + myServiceDescription.Bindings.Count);
 myServiceDescription.Write("MathService_temp.wsdl");
 // Add binding to the ServiceDescription instance.
 myServiceDescription.Bindings.Add(myBinding);

S’applique à

Produit Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0