Compartilhar via


SoapNegativeInteger.GetXsdType Método

Definição

Retorna a XSD (linguagem de definição de esquema XML) do tipo SOAP atual.

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

Retornos

Um String que indica a XSD do tipo SOAP atual.

Implementações

Exemplos

O exemplo de código a seguir mostra como usar o método GetXsdType. Este exemplo de código faz parte de um exemplo maior fornecido para a SoapNegativeInteger classe .

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

Aplica-se a