Freigeben über


ServiceDescription.TargetNamespace-Eigenschaft

Ruft das XML-targetNamespace-Attribut des descriptions-Tags ab, das eine WSDL (Web Services Description Language)-Datei einschließt, oder legt dieses fest.

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

Syntax

'Declaration
Public Property TargetNamespace As String
'Usage
Dim instance As ServiceDescription
Dim value As String

value = instance.TargetNamespace

instance.TargetNamespace = value
public string TargetNamespace { get; set; }
public:
property String^ TargetNamespace {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_TargetNamespace ()

/** @property */
public void set_TargetNamespace (String value)
public function get TargetNamespace () : String

public function set TargetNamespace (value : String)

Eigenschaftenwert

Der URL des XML-Webdiensts, der durch die ServiceDescription beschrieben wird.

Beispiel

' Read a ServiceDescription from existing WSDL.
Dim myServiceDescription As ServiceDescription = _
   ServiceDescription.Read("Input.vb.wsdl")
myServiceDescription.TargetNamespace = "http://tempuri.org/"
// Read a ServiceDescription from existing WSDL.
ServiceDescription myServiceDescription =
   ServiceDescription.Read("Input_CS.wsdl");
myServiceDescription.TargetNamespace = "http://tempuri.org/";
// Read a ServiceDescription from existing WSDL.
ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Input_CS.wsdl" );
myServiceDescription->TargetNamespace = "http://tempuri.org/";
// Read a ServiceDescription from existing WSDL.
ServiceDescription myServiceDescription = ServiceDescription.
    Read("Input_JSL.wsdl");
myServiceDescription.set_TargetNamespace("http://tempuri.org/");

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

ServiceDescription-Klasse
ServiceDescription-Member
System.Web.Services.Description-Namespace