Partager via


SoapNormalizedString.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 SoapNormalizedString classe .

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

S’applique à