Share via


SoapMonth.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 riportato di seguito viene illustrato come utilizzare la proprietà XsdType. Questo esempio di codice fa parte di un esempio più grande fornito per la SoapMonth classe.

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

Si applica a