SoapTime.XsdType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前 SOAP 类型的 XML 架构定义语言 (XSD)。
public:
static property System::String ^ XsdType { System::String ^ get(); };
public static string XsdType { get; }
static member XsdType : string
Public Shared ReadOnly Property XsdType As String
属性值
一个 String 指示当前 SOAP 类型的 XSD。
示例
下面的代码示例演示如何使用此属性。 此代码示例是为 SoapTime 类提供的一个更大示例的一部分。
// Display the XSD type string of the SoapTime class.
Console::WriteLine( "The XSD type of the class SoapTime is {0}.",
SoapTime::XsdType );
// Display the XSD type string of the SoapTime class.
Console.WriteLine("The XSD type of the class SoapTime is {0}.",
SoapTime.XsdType);