Share via


SoapInteger.XsdType Propriedade

Definição

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

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 da propriedade

Um String que indica a XSD do tipo SOAP atual.

Exemplos

O exemplo de código a seguir mostra como usar a XsdType propriedade . Este exemplo de código faz parte de um exemplo maior fornecido para a SoapInteger classe .

// 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);

Aplica-se a