Freigeben über


SoapServices.XmlNsForClrTypeWithNs-Eigenschaft

Ruft das XML-Namespacepräfix ab, das für die XML-Codierung einer Common Language Runtime-Klasse verwendet wird, die Bestandteil der Datei mscorlib.dll ist.

Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared ReadOnly Property XmlNsForClrTypeWithNs As String
'Usage
Dim value As String

value = SoapServices.XmlNsForClrTypeWithNs
public static string XmlNsForClrTypeWithNs { get; }
public:
static property String^ XmlNsForClrTypeWithNs {
    String^ get ();
}
/** @property */
public static String get_XmlNsForClrTypeWithNs ()
public static function get XmlNsForClrTypeWithNs () : String

Eigenschaftenwert

Das XML-Namespacepräfix, das für die XML-Codierung einer Common Language Runtime-Klasse verwendet wird, die Bestandteil der Datei mscorlib.dll ist.

Ausnahmen

Ausnahmetyp Bedingung

SecurityException

Der direkte Aufrufer verfügt nicht über die Berechtigung für die Infrastruktur.

Hinweise

WSDL- und SOAP-Protokolle codieren Common Language Runtime-Klassen in XML-Namespaces. Die aktuelle Eigenschaft gibt das Format für die XML-Namespaces an. Wenn die Common Language Runtime-Klasse Bestandteil der mscorlib-Assembly ist, wird der von der aktuellen Eigenschaft zurückgegebene XML-Namespace verwendet.

Beispiel

Im folgenden Codebeispiel wird die Verwendung dieser Eigenschaft veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die SoapServices-Klasse.

// Print the XML namespace for the CLR types 
// that are a part of the Mscorlib.dll.
Console.WriteLine(
    "The XML namespace for the CLR types " +
    "that are part of the Mscorlib.dll, is {0}.",
    SoapServices.XmlNsForClrTypeWithNs);
// Print the XML namespace for the CLR types
// that are a part of the Mscorlib.dll.
Console::WriteLine( L"The XML namespace for the CLR types "
L"that are part of the Mscorlib.dll, is {0}.",
   SoapServices::XmlNsForClrTypeWithNs );
// Print the XML namespace for the CLR types 
// that are a part of the Mscorlib.dll.
Console.WriteLine("The XML namespace for the CLR types " 
    + "that are part of the Mscorlib.dll, is {0}.", 
    SoapServices.get_XmlNsForClrTypeWithNs());

.NET Framework-Sicherheit

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

SoapServices-Klasse
SoapServices-Member
System.Runtime.Remoting-Namespace