Share via


SoapMonth.GetXsdType Metodo

Definizione

Restituisce l'oggetto XML Schema Definition Language (XSD) del tipo SOAP corrente.

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

Restituisce

Oggetto String che indica il linguaggio XSD del tipo SOAP corrente.

Implementazioni

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo GetXsdType. Questo esempio di codice fa parte di un esempio più grande fornito per la SoapMonth classe.

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

Si applica a