OperationBinding::Input Property
.NET Framework (current version)
Gets or sets the InputBinding associated with the OperationBinding.
Assembly: System.Web.Services (in System.Web.Services.dll)
public: property InputBinding^ Input { InputBinding^ get(); void set(InputBinding^ value); }
Property Value
Type: System.Web.Services.Description::InputBinding^An InputBinding associated with the OperationBinding.
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
Available since 1.1
Show: