This documentation is archived and is not being maintained.
OperationBinding.Output Property
.NET Framework 1.1
Gets or sets the OutputBinding associated with the OperationBinding.
[Visual Basic] Public Property Output As OutputBinding [C#] public OutputBinding Output {get; set;} [C++] public: __property OutputBinding* get_Output(); public: __property void set_Output(OutputBinding*); [JScript] public function get Output() : OutputBinding; public function set Output(OutputBinding);
Property Value
An OutputBinding.
Remarks
An OperationBinding will be associated with exactly one OutputBinding.
Example
[Visual Basic] ' Create an OutputBinding for the Add operation. Dim myOutputBinding As New OutputBinding() myOutputBinding.Extensions.Add(mySoapBodyBinding) ' Add the OutputBinding to the OperationBinding. addOperationBinding.Output = myOutputBinding [C#] // Create an OutputBinding for the Add operation. OutputBinding myOutputBinding = new OutputBinding(); myOutputBinding.Extensions.Add(mySoapBodyBinding); // Add the OutputBinding to the OperationBinding. addOperationBinding.Output = myOutputBinding; [C++] // Create an OutputBinding for the Add operation. OutputBinding* myOutputBinding = new OutputBinding(); myOutputBinding->Extensions->Add(mySoapBodyBinding); // Add the OutputBinding to the OperationBinding. addOperationBinding->Output = myOutputBinding;
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
OperationBinding Class | OperationBinding Members | System.Web.Services.Description Namespace
Show: