Поделиться через


SoapYearMonth.GetXsdType Метод

Определение

Возвращает язык определения XML-схемы (XSD) текущего типа SOAP.

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

Возвращаемое значение

Объект String, указывающий XSD текущего типа SOAP.

Реализации

Примеры

В следующем примере кода показано применение этого метода. Этот пример кода является частью более широкого примера для класса 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());

Применяется к