SoapDuration.XsdType Właściwość

Definicja

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

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

Wartość właściwości

String

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

Przykłady

W poniższym przykładzie kodu pokazano, jak używać XsdType właściwości. Ten przykład kodu jest częścią większego przykładu udostępnionego SoapDuration dla klasy.

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

Dotyczy