SoapNonNegativeInteger.XsdType 属性

定义

获取当前 SOAP 类型的 XML 架构定义语言 (XSD)。Gets the XML Schema definition language (XSD) of the current SOAP type.

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

属性值

String

一个 String 指示当前 SOAP 类型的 XSD。A String that indicates the XSD of the current SOAP type.

示例

下面的代码示例说明如何使用 XsdType 属性。The following code example shows how to use the XsdType property. 此代码示例是为类提供的更大示例的一部分 SoapNonNegativeIntegerThis code example is part of a larger example that is provided for the SoapNonNegativeInteger class.

// Print the XSD type string of the SoapNonNegativeInteger class.
Console::WriteLine( L"The XSD type of the SoapNonNegativeInteger class "
L"is {0}.", SoapNonNegativeInteger::XsdType );
// Print the XSD type string of the SoapNonNegativeInteger class.
Console.WriteLine(
    "The XSD type of the SoapNonNegativeInteger class " +
    "is {0}.", SoapNonNegativeInteger.XsdType);

适用于