SoapServices.XmlNsForClrTypeWithNs 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 XML 命名空间前缀,该前缀应该用于作为 mscorlib.dll 文件组成部分的公共语言运行时类的 XML 编码。
public:
static property System::String ^ XmlNsForClrTypeWithNs { System::String ^ get(); };
public static string XmlNsForClrTypeWithNs { get; }
static member XmlNsForClrTypeWithNs : string
Public Shared ReadOnly Property XmlNsForClrTypeWithNs As String
属性值
XML 命名空间前缀,该前缀应该用于作为 mscorlib.dll 文件组成部分的公共语言运行时类的 XML 编码。
例外
直接调用方没有基础结构权限。
示例
下面的代码示例演示如何使用此属性。 此代码示例是为 SoapServices 类提供的一个更大示例的一部分。
// 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.XmlNsForClrTypeWithNs);
注解
WSDL 和 SOAP 协议将公共语言运行时类编码为 XML 命名空间。 当前 属性指定 XML 命名空间的格式。 如果公共语言运行时类是 mscorlib 程序集的一部分,则使用当前属性返回的 XML 命名空间。