Condividi tramite


SoapTime.XsdType Proprietà

Definizione

Ottiene il linguaggio XSD (XML Schema Definition) del tipo SOAP corrente.

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

Valore della proprietà

Oggetto String che indica il linguaggio XSD del tipo SOAP corrente.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare questa proprietà. Questo esempio di codice fa parte di un esempio più ampio fornito per 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);

Si applica a