SoapYearMonth.XsdType プロパティ

定義

現在の SOAP 型の XML スキーマ定義言語 (XSD) を取得します。

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

現在の SOAP 型の XSD を示す String

次のコード例は、このプロパティの使用方法を示しています。 このコード例は、SoapYearMonth クラスで提供されている、より大きな例の一部です。

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

適用対象