OperationBindingCollection Class
.NET Framework 2.0
Represents a collection of instances of the OperationBinding class. This class cannot be inherited.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
'Declaration Public NotInheritable Class OperationBindingCollection Inherits ServiceDescriptionBaseCollection 'Usage Dim instance As OperationBindingCollection
public final class OperationBindingCollection extends ServiceDescriptionBaseCollection
public final class OperationBindingCollection extends ServiceDescriptionBaseCollection
Not applicable.
The OperationBinding class corresponds to the Web Services Description Language (WSDL) <operation> element enclosed by the <binding> element, which in turn corresponds to the Binding class. For more information about WSDL, see the specification at http://www.w3.org/TR/wsdl/.
Imports System Imports System.Web.Services.Description Imports Microsoft.VisualBasic Class MyOperationBindingCollectionSample Shared Sub Main() Try Dim myServiceDescription As ServiceDescription = _ ServiceDescription.Read("MathService_input_vb.wsdl") ' Add the OperationBinding for the Add operation. Dim addOperationBinding As New OperationBinding() Dim addOperation As String = "Add" Dim myTargetNamespace As String = myServiceDescription.TargetNamespace addOperationBinding.Name = addOperation ' Add the InputBinding for the operation. Dim myInputBinding As New InputBinding() Dim mySoapBodyBinding As New SoapBodyBinding() mySoapBodyBinding.Use = SoapBindingUse.Literal myInputBinding.Extensions.Add(mySoapBodyBinding) addOperationBinding.Input = myInputBinding ' Add the OutputBinding for the operation. Dim myOutputBinding As New OutputBinding() myOutputBinding.Extensions.Add(mySoapBodyBinding) addOperationBinding.Output = myOutputBinding ' Add the extensibility element for the SoapOperationBinding. Dim mySoapOperationBinding As New SoapOperationBinding() mySoapOperationBinding.Style = SoapBindingStyle.Document mySoapOperationBinding.SoapAction = myTargetNamespace & addOperation addOperationBinding.Extensions.Add(mySoapOperationBinding) ' Get the BindingCollection from the ServiceDescription. Dim myBindingCollection As BindingCollection = _ myServiceDescription.Bindings ' Get the OperationBindingCollection of SOAP binding from ' the BindingCollection. Dim myOperationBindingCollection As OperationBindingCollection = _ myBindingCollection(0).Operations ' Check for the Add OperationBinding in the collection. Dim contains As Boolean = _ myOperationBindingCollection.Contains(addOperationBinding) Console.WriteLine(ControlChars.NewLine & _ "Whether the collection contains the Add " & _ "OperationBinding : " & contains.ToString()) ' Add the Add OperationBinding to the collection. myOperationBindingCollection.Add(addOperationBinding) Console.WriteLine(ControlChars.NewLine & _ "Added the OperationBinding of the Add " & _ "operation to the collection.") ' Get the OperationBinding of the Add operation from the collection. Dim myOperationBinding As OperationBinding = _ myOperationBindingCollection(3) ' Remove the OperationBinding of the 'Add' operation from ' the collection. myOperationBindingCollection.Remove(myOperationBinding) Console.WriteLine(ControlChars.NewLine & _ "Removed the OperationBinding of the " & _ "Add operation from the collection.") ' 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()) Console.WriteLine("") Dim operationBindingArray(myOperationBindingCollection.Count -1 ) _ As OperationBinding ' Copy this collection to the OperationBinding array. myOperationBindingCollection.CopyTo(operationBindingArray, 0) Console.WriteLine("The operations supported by this service " & _ "are :") Dim myOperationBinding1 As OperationBinding For Each myOperationBinding1 In operationBindingArray Dim myBinding As Binding = myOperationBinding1.Binding Console.WriteLine(" Binding : " & myBinding.Name & " Name of " & _ "operation : " & myOperationBinding1.Name) Next myOperationBinding1 ' Save the ServiceDescription to an external file. myServiceDescription.Write("MathService_new_vb.wsdl") Catch e As Exception Console.WriteLine("Exception caught!!!") Console.WriteLine("Source : " & e.Source.ToString()) Console.WriteLine("Message : " & e.Message.ToString()) End Try End Sub 'Main End Class 'MyOperationBindingCollectionSample
import System.*;
import System.Web.Services.Description.*;
class MyOperationBindingCollectionSample
{
public static void main(String[] args)
{
try {
ServiceDescription myServiceDescription = ServiceDescription.
Read("MathService_input_jsl.wsdl");
// Add the OperationBinding for the Add operation.
OperationBinding addOperationBinding = new OperationBinding();
String addOperation = "Add";
String myTargetNamespace = myServiceDescription.
get_TargetNamespace();
addOperationBinding.set_Name(addOperation);
// Add the InputBinding for the operation.
InputBinding myInputBinding = new InputBinding();
SoapBodyBinding mySoapBodyBinding = new SoapBodyBinding();
mySoapBodyBinding.set_Use(SoapBindingUse.Literal);
myInputBinding.get_Extensions().Add(mySoapBodyBinding);
addOperationBinding.set_Input(myInputBinding);
// Add the OutputBinding for the operation.
OutputBinding myOutputBinding = new OutputBinding();
myOutputBinding.get_Extensions().Add(mySoapBodyBinding);
addOperationBinding.set_Output(myOutputBinding);
// Add the extensibility element for the SoapOperationBinding.
SoapOperationBinding mySoapOperationBinding =
new SoapOperationBinding();
mySoapOperationBinding.set_Style(SoapBindingStyle.Document);
mySoapOperationBinding.set_SoapAction(myTargetNamespace
+ addOperation);
addOperationBinding.get_Extensions().Add(mySoapOperationBinding);
// Get the BindingCollection from the ServiceDescription.
BindingCollection myBindingCollection = myServiceDescription.
get_Bindings();
// Get the OperationBindingCollection of SOAP binding from
// the BindingCollection.
OperationBindingCollection myOperationBindingCollection =
myBindingCollection.get_Item(0).get_Operations();
// Check for the Add OperationBinding in the collection.
boolean contains = myOperationBindingCollection.
Contains(addOperationBinding);
Console.WriteLine("\nWhether the collection contains the Add "
+ "OperationBinding : " + (System.Boolean)contains);
// Add the Add OperationBinding to the collection.
myOperationBindingCollection.Add(addOperationBinding);
Console.WriteLine("\nAdded the OperationBinding of the Add"
+ " operation to the collection.");
// Get the OperationBinding of the Add operation from the
// collection.
OperationBinding myOperationBinding = myOperationBindingCollection.
get_Item(3);
// Remove the OperationBinding of the Add operation from
// the collection.
myOperationBindingCollection.Remove(myOperationBinding);
Console.WriteLine("\nRemoved the OperationBinding of the "
+ "Add operation from the collection.");
// 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);
Console.WriteLine("");
OperationBinding operationBindingArray[] = new
OperationBinding[myOperationBindingCollection.get_Count()];
// Copy this collection to the OperationBinding array.
myOperationBindingCollection.CopyTo(operationBindingArray, 0);
Console.WriteLine("The operations supported by this service "
+ "are :");
OperationBinding myOperationBinding1 = null;
for (int iCtr = 0; iCtr < operationBindingArray.get_Length();
iCtr++) {
myOperationBinding1 = operationBindingArray[iCtr];
Binding myBinding = myOperationBinding1.get_Binding();
Console.WriteLine(" Binding : " + myBinding.get_Name()
+ " Name of " + "operation : "
+ myOperationBinding1.get_Name());
}
// Save the ServiceDescription to an external file.
myServiceDescription.Write("MathService_new_jsl.wsdl");
}
catch (System.Exception e) {
Console.WriteLine("Exception caught!!!");
Console.WriteLine("Source : " + e.get_Source());
Console.WriteLine("Message : " + e.get_Message());
}
} //main
} //MyOperationBindingCollectionSample
System.Object
System.Collections.CollectionBase
System.Web.Services.Description.ServiceDescriptionBaseCollection
System.Web.Services.Description.OperationBindingCollection
System.Collections.CollectionBase
System.Web.Services.Description.ServiceDescriptionBaseCollection
System.Web.Services.Description.OperationBindingCollection
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: