SoapServices.XmlNsForClrTypeWithNsAndAssembly-Eigenschaft
Ruft das Standardpräfix für XML-Namespaces ab, das für die XML-Codierung einer Common Language Runtime-Klasse verwendet wird, die sowohl über einen Namespace für die Common Language Runtime als auch über eine Assembly verfügt.
Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly Property XmlNsForClrTypeWithNsAndAssembly As String
'Usage
Dim value As String
value = SoapServices.XmlNsForClrTypeWithNsAndAssembly
public static string XmlNsForClrTypeWithNsAndAssembly { get; }
public:
static property String^ XmlNsForClrTypeWithNsAndAssembly {
String^ get ();
}
/** @property */
public static String get_XmlNsForClrTypeWithNsAndAssembly ()
public static function get XmlNsForClrTypeWithNsAndAssembly () : String
Eigenschaftenwert
Das Standardpräfix für XML-Namespaces, das für die XML-Codierung einer Common Language Runtime-Klasse verwendet wird, die sowohl über einen Namespace für die Common Language Runtime als auch über eine Assembly verfügt.
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. Wenn eine Common Language Runtime-Klasse über eine Assembly und einen Namespace der Common Language Runtime verfügt, gibt die aktuelle Eigenschaft den verwendeten XML-Standardnamespace zurück.
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 have both an assembly and a common language runtime
// namespace.
Console.WriteLine(
"The XML namespace for the CLR types " +
"that have both an assembly and a namespace, is {0}.",
SoapServices.XmlNsForClrTypeWithNsAndAssembly);
// Print the XML namespace for the CLR types
// that have both an assembly and a common language runtime
// namespace.
Console::WriteLine( L"The XML namespace for the CLR types "
L"that have both an assembly and a namespace, is {0}.",
SoapServices::XmlNsForClrTypeWithNsAndAssembly );
// Print the XML namespace for the CLR types
// that have both an assembly and a common language runtime
// namespace.
Console.WriteLine("The XML namespace for the CLR types "
+ "that have both an assembly and a namespace, is {0}.",
SoapServices.get_XmlNsForClrTypeWithNsAndAssembly());
.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