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