SoapServices.XmlNsForClrTypeWithAssembly 属性

定义

获取默认的 XML 命名空间前缀,该前缀应该用于具有程序集但没有本机命名空间的公共语言运行时类的 XML 编码。

public:
 static property System::String ^ XmlNsForClrTypeWithAssembly { System::String ^ get(); };
public static string XmlNsForClrTypeWithAssembly { get; }
static member XmlNsForClrTypeWithAssembly : string
Public Shared ReadOnly Property XmlNsForClrTypeWithAssembly As String

属性值

默认的 XML 命名空间前缀,该前缀应该用于具有程序集但没有本机命名空间的公共语言运行时类的 XML 编码。

例外

直接调用方没有基础结构权限。

示例

下面的代码示例演示如何使用此属性。 此代码示例是为 SoapServices 类提供的一个更大示例的一部分。

// Print the XML namespace for the CLR types
// that have an assembly but no common language runtime namespace.
Console::WriteLine( L"The XML namespace for the CLR types "
   L"that have an assembly but no namespace, is {0}.",
   SoapServices::XmlNsForClrTypeWithAssembly );
// Print the XML namespace for the CLR types 
// that have an assembly but no common language runtime namespace.
Console.WriteLine(
    "The XML namespace for the CLR types " +
    "that have an assembly but no namespace, is {0}.",
    SoapServices.XmlNsForClrTypeWithAssembly);

注解

WSDL 和 SOAP 协议将公共语言运行时类编码为 XML 命名空间。 当前 属性指定 XML 命名空间的格式。 如果公共语言运行时类具有程序集但没有命名空间,则当前属性将返回使用的默认 XML 命名空间。

适用于