SoapTime.XsdType Propriété

Définition

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

public:
 static property System::String ^ XsdType { System::String ^ get(); };
public static string XsdType { get; }
static member XsdType : string
Public Shared ReadOnly Property XsdType As String

Valeur de propriété

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

Exemples

L’exemple de code suivant montre comment utiliser cette propriété. Cet exemple de code fait partie d’un exemple plus grand fourni pour la SoapTime classe .

// Display the XSD type string of the SoapTime class.
Console::WriteLine( "The XSD type of the class SoapTime is {0}.",
   SoapTime::XsdType );
// Display the XSD type string of the SoapTime class.
Console.WriteLine("The XSD type of the class SoapTime is {0}.",
    SoapTime.XsdType);

S’applique à