OperationBinding.Input Property
.NET Framework 3.0
Gets or sets the InputBinding associated with the OperationBinding.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
public: property InputBinding^ Input { InputBinding^ get (); void set (InputBinding^ value); }
/** @property */ public InputBinding get_Input () /** @property */ public void set_Input (InputBinding value)
public function get Input () : InputBinding public function set Input (value : InputBinding)
Not applicable.
Property Value
An 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;
// Create an InputBinding for the Add operation. InputBinding myInputBinding = new InputBinding(); SoapBodyBinding mySoapBodyBinding = new SoapBodyBinding(); mySoapBodyBinding.set_Use(SoapBindingUse.Literal); myInputBinding.get_Extensions().Add(mySoapBodyBinding); // Add the InputBinding to the OperationBinding. addOperationBinding.set_Input(myInputBinding);
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: