Compartilhar via


SoapDateTime.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 essa propriedade. Este exemplo de código faz parte de um exemplo maior fornecido para a SoapDateTime classe .

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

Aplica-se a