Freigeben über


HttpAddressBinding-Klasse

Stellt ein Erweiterbarkeitselement dar, das einem Port innerhalb eines XML-Webdiensts hinzugefügt wurde. Diese Klasse kann nicht geerbt werden.

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

Syntax

'Declaration
Public NotInheritable Class HttpAddressBinding
    Inherits ServiceDescriptionFormatExtension
'Usage
Dim instance As HttpAddressBinding
public sealed class HttpAddressBinding : ServiceDescriptionFormatExtension
public ref class HttpAddressBinding sealed : public ServiceDescriptionFormatExtension
public final class HttpAddressBinding extends ServiceDescriptionFormatExtension
public final class HttpAddressBinding extends ServiceDescriptionFormatExtension

Hinweise

Diese Klasse gibt durch ihre Location-Eigenschaft den Basis-URI für den XML-Webdienst an. Weitere Informationen über XML-Webdienste finden Sie unter XML-Webdienste, die ASP.NET verwenden. Weitere Informationen über WSDL (Web Services Description Language) finden Sie in der Spezifikation unter http://www.w3.org/TR/wsdl/.

Beispiel

' Create the 'HttpAddressBinding' object.
Dim postAddressBinding As New HttpAddressBinding()

postAddressBinding.Location = "https://localhost/Service1.asmx"

' Add the 'HttpAddressBinding' to the 'Port'.
postPort.Extensions.Add(postAddressBinding)
// Create the 'HttpAddressBinding' object.
HttpAddressBinding postAddressBinding = new HttpAddressBinding();

postAddressBinding.Location = "https://localhost/Service1.asmx";

// Add the 'HttpAddressBinding' to the 'Port'.
postPort.Extensions.Add(postAddressBinding);
// Create the 'HttpAddressBinding' object.
HttpAddressBinding^ postAddressBinding = gcnew HttpAddressBinding;
postAddressBinding->Location = "https://localhost/Service1.asmx";

// Add the 'HttpAddressBinding' to the 'Port'.
postPort->Extensions->Add( postAddressBinding );
// Create the 'HttpAddressBinding' object.
HttpAddressBinding postAddressBinding = new HttpAddressBinding();

postAddressBinding.set_Location("https://localhost/Service1.asmx");
// Add the 'HttpAddressBinding' to the 'Port'.
postPort.get_Extensions().Add(postAddressBinding);

Vererbungshierarchie

System.Object
   System.Web.Services.Description.ServiceDescriptionFormatExtension
    System.Web.Services.Description.HttpAddressBinding

Threadsicherheit

Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.

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

HttpAddressBinding-Member
System.Web.Services.Description-Namespace