SoapYearMonth.XsdType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 that indicates the XSD of the current SOAP type.
Examples
The following code example shows how to use this property. This code example is part of a larger example that is provided for the SoapYearMonth class.
// Display the XSD type string of the SoapYearMonth class.
Console::WriteLine( "The XSD type of the class SoapYearMonth is {0}.",
SoapYearMonth::XsdType );
// Display the XSD type string of the SoapYearMonth class.
Console.WriteLine("The XSD type of the class SoapYearMonth is {0}.",
SoapYearMonth.XsdType);
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.