SoapQName.XsdType Propriedade
Definição
Obtém a XSD (linguagem de definição de esquema XML) do tipo SOAP atual.Gets the XML Schema definition language (XSD) of the current SOAP type.
public:
static property System::String ^ XsdType { System::String ^ get(); };
public static string XsdType { get; }
member this.XsdType : string
Public Shared ReadOnly Property XsdType As String
Valor da propriedade
Um String que indica a XSD do tipo SOAP atual.A String that indicates the XSD of the current SOAP type.
Exemplos
O exemplo de código a seguir mostra como usar a XsdType propriedade.The following code example shows how to use the XsdType property. Este exemplo de código faz parte de um exemplo maior que é fornecido para a SoapQName classe.This code example is part of a larger example that is provided for the SoapQName class.
// Print the XSD type string of the SoapQName class.
Console::WriteLine( L"The XSD type of the SoapQName class "
L"is {0}.", SoapQName::XsdType );
// Print the XSD type string of the SoapQName class.
Console.WriteLine(
"The XSD type of the SoapQName class " +
"is {0}.", SoapQName.XsdType);