다음을 통해 공유


SoapYear.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입니다.

예제

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

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

적용 대상