Share via


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

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

Si applica a