다음을 통해 공유


SoapNonPositiveInteger.XsdType 속성

정의

현재 SOAP 형식의 XSD(XML Schema Definition Language)를 가져옵니다.

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

속성 값

현재 SOAP 형식의 XSD를 나타내는 String입니다.

예제

다음 코드 예제에서는 XsdType 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는 제공 된 큰 예제의 일부는 SoapNonPositiveInteger 클래스입니다.

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

적용 대상