Freigeben über


SoapNonNegativeInteger.GetXsdType Methode

Definition

Gibt die XSD (XML Schema Definition) des aktuellen SOAP-Typs zurück.

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

Gibt zurück

Ein String, der die XSD des aktuellen SOAP-Typs angibt.

Implementiert

Beispiele

Im folgenden Codebeispiel wird die Verwendung der GetXsdType-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die SoapNonNegativeInteger-Klasse bereitgestellt wird.

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

Gilt für: