SoapServices.XmlNsForClrType-Eigenschaft
Ruft die XML-Namespacepräfixe für Common Language Runtime-Typen ab.
Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly Property XmlNsForClrType As String
'Usage
Dim value As String
value = SoapServices.XmlNsForClrType
public static string XmlNsForClrType { get; }
public:
static property String^ XmlNsForClrType {
String^ get ();
}
/** @property */
public static String get_XmlNsForClrType ()
public static function get XmlNsForClrType () : String
Eigenschaftenwert
Die XML-Namespacepräfixe für Common Language Runtime-Typen.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
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. Alle XML-Namespaces für eine Common Language Runtime-Klasse beginnen mit dem String, den die aktuelle Eigenschaft zurückgibt.
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.
Console.WriteLine(
"The XML namespace for the CLR types " +
"is {0}.",
SoapServices.XmlNsForClrType);
// Print the XML namespace for the CLR types.
Console::WriteLine( L"The XML namespace for the CLR types "
L"is {0}.", SoapServices::XmlNsForClrType );
// Print the XML namespace for the CLR types.
Console.WriteLine("The XML namespace for the CLR types " + "is {0}.",
SoapServices.get_XmlNsForClrType());
.NET Framework-Sicherheit
- SecurityPermission für die Verwendung von Infrastrukturcode. Zugeordnete Enumeration: SecurityPermissionFlag.Infrastructure
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