SoapHexBinary.GetXsdType Metoda

Definicja

Zwraca język definicji schematu XML (XSD) bieżącego typu SOAP.

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

Zwraca

String

Element String wskazujący XSD bieżącego typu SOAP.

Implementuje

Przykłady

W poniższym przykładzie kodu pokazano, jak używać GetXsdType metody . Ten przykład kodu jest częścią większego przykładu udostępnionego SoapHexBinary dla klasy.

// Print the XSD type string of this particular SoapHexBinary object.
Console::WriteLine( L"The XSD type of the SoapHexBinary object is {0}.",
   hexBinary->GetXsdType() );
// Print the XSD type string of this particular SoapHexBinary object.
Console.WriteLine(
    "The XSD type of the SoapHexBinary object is {0}.",
    hexBinary.GetXsdType());

Dotyczy