Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Ruft das OutputBinding ab, das dem OperationBinding zugeordnet ist, oder legt dieses fest.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Syntax
'Declaration
Public Property Output As OutputBinding
'Usage
Dim instance As OperationBinding
Dim value As OutputBinding
value = instance.Output
instance.Output = value
public OutputBinding Output { get; set; }
public:
property OutputBinding^ Output {
OutputBinding^ get ();
void set (OutputBinding^ value);
}
/** @property */
public OutputBinding get_Output ()
/** @property */
public void set_Output (OutputBinding value)
public function get Output () : OutputBinding
public function set Output (value : OutputBinding)
Eigenschaftenwert
Ein OutputBinding.
Hinweise
Einem OperationBinding wird genau ein OutputBinding zugeordnet.
Beispiel
' 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
// Create an OutputBinding for the Add operation.
OutputBinding myOutputBinding = new OutputBinding();
myOutputBinding.Extensions.Add(mySoapBodyBinding);
// Add the OutputBinding to the OperationBinding.
addOperationBinding.Output = myOutputBinding;
// Create an OutputBinding for the Add operation.
OutputBinding^ myOutputBinding = gcnew OutputBinding;
myOutputBinding->Extensions->Add( mySoapBodyBinding );
// Add the OutputBinding to the OperationBinding.
addOperationBinding->Output = myOutputBinding;
// Create an OutputBinding for the Add operation.
OutputBinding myOutputBinding = new OutputBinding();
myOutputBinding.get_Extensions().Add(mySoapBodyBinding);
// Add the OutputBinding to the OperationBinding.
addOperationBinding.set_Output(myOutputBinding);
Plattformen
Windows 98, Windows 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
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
OperationBinding-Klasse
OperationBinding-Member
System.Web.Services.Description-Namespace