OperationBinding::Input Property

 

Gets or sets the InputBinding associated with the OperationBinding.

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

public:
property InputBinding^ Input {
	InputBinding^ get();
	void set(InputBinding^ value);
}

An OperationBinding will be associated with exactly one InputBinding.

// Create an InputBinding for the Add operation.
InputBinding^ myInputBinding = gcnew InputBinding;
SoapBodyBinding^ mySoapBodyBinding = gcnew SoapBodyBinding;
mySoapBodyBinding->Use = SoapBindingUse::Literal;
myInputBinding->Extensions->Add( mySoapBodyBinding );

// Add the InputBinding to the OperationBinding.
addOperationBinding->Input = myInputBinding;

.NET Framework
Available since 1.1
Return to top
Show: