Partager via


SoapNonNegativeInteger.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 grand fourni pour la SoapNonNegativeInteger classe .

// Print the XSD type string of the SoapNonNegativeInteger object.
Console::WriteLine( L"The XSD type of the SoapNonNegativeInteger "
L"object is {0}.", xsdInteger->GetXsdType() );
// Print the XSD type string of the SoapNonNegativeInteger object.
Console.WriteLine(
    "The XSD type of the SoapNonNegativeInteger " +
    "object is {0}.", xsdInteger.GetXsdType());

S’applique à