SoapHexBinary.XsdType Property

Definition

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; }
static member XsdType : string
Public Shared ReadOnly Property XsdType As String

Property Value

A String indicating the XSD of the current SOAP type.

Examples

The following code example shows how to use the XsdType property. This code example is part of a larger example that is provided for the SoapHexBinary class.

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

Applies to