OperationBinding::Binding Property

 

Gets the Binding of which the current OperationBinding is a member.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property Binding^ Binding {
	Binding^ get();
}

Property Value

Type: System.Web.Services.Description::Binding^

A binding of which the current OperationBinding is a member.

The current OperationBinding is a member of the Operations collection.

// Create an OutputBinding for the Add operation.
OutputBinding^ myOutputBinding = gcnew OutputBinding;
myOutputBinding->Extensions->Add( mySoapBodyBinding );

// Add the OutputBinding to the OperationBinding. 
addOperationBinding->Output = myOutputBinding;

.NET Framework
Available since 1.1
Return to top
Show: