SoapNonNegativeInteger.GetXsdType Método

Definición

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

public:
 virtual System::String ^ GetXsdType();
public string GetXsdType ();
abstract member GetXsdType : unit -> string
override this.GetXsdType : unit -> string
Public Function GetXsdType () As String

Devoluciones

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

Implementaciones

Ejemplos

En el ejemplo de código siguiente, se muestra cómo se utiliza el método GetXsdType. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoapNonNegativeInteger.

// Print the XSD type string of the SoapNonNegativeInteger object.
Console::WriteLine( L"The XSD type of the SoapNonNegativeInteger "
L"object is {0}.", xsdInteger->GetXsdType() );
// Print the XSD type string of the SoapNonNegativeInteger object.
Console.WriteLine(
    "The XSD type of the SoapNonNegativeInteger " +
    "object is {0}.", xsdInteger.GetXsdType());

Se aplica a