SoapYearMonth.GetXsdType メソッド

定義

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

public:
 virtual System::String ^ GetXsdType();
public string GetXsdType ();
abstract member GetXsdType : unit -> string
override this.GetXsdType : unit -> string
Public Function GetXsdType () As String

戻り値

String

現在の SOAP 型の XSD を示す String

実装

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

// Display the XSD type string of this particular SoapYearMonth object.
Console::WriteLine( "The XSD type of the SoapYearMonth instance is {0}.",
   yearMonth->GetXsdType() );
// Display the XSD type string of this SoapYearMonth object.
Console.WriteLine(
    "The XSD type of the SoapYearMonth object is {0}.",
    yearMonth.GetXsdType());

適用対象