Freigeben über


SoapMonthDay.XsdType Eigenschaft

Definition

Ruft die XSD (XML Schema Definition) des aktuellen SOAP-Typs ab.

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

Eigenschaftswert

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

Beispiele

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

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

Gilt für: