SoapDuration.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 SoapDuration.

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

Se aplica a