SoapInteger.XsdType Propiedad

Definición

Obtiene el lenguaje de definición de esquemas XML (XSD) del tipo SOAP actual.

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

Valor de propiedad

Objeto String que indica el esquema XSD del tipo SOAP actual.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad XsdType. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoapInteger.

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

Se aplica a