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