SoapYearMonth.GetXsdType メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の 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
戻り値
現在の 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());