SoapTime.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 cette méthode. Cet exemple de code fait partie d’un exemple plus grand fourni pour la SoapTime classe .

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

S’applique à