SoapServices.XmlNsForClrTypeWithNsAndAssembly 属性

定义

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

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

属性值

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

例外

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

示例

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

// 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.XmlNsForClrTypeWithNsAndAssembly);

注解

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

适用于