Condividi tramite


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

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

Si applica a