Partager via


SoapMonthDay.GetXsdType Méthode

Définition

Retourne le langage XSD (XML Schema Definition) du type SOAP en cours.

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

Retours

String qui indique le langage XSD du type SOAP en cours.

Implémente

Exemples

L'exemple de code suivant montre comment utiliser la méthode GetXsdType. Cet exemple de code fait partie d’un exemple plus large fourni pour la SoapMonthDay classe .

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

S’applique à