SoapMonth Class
Wraps an XSD gMonth type.
Assembly: mscorlib (in mscorlib.dll)
For more information about XSD data types, see the "XML Data Types Reference" in the MSDN Library at http://msdn.microsoft.com/library.
The following code example shows how to use the members in the SoapMonth class to convert between a SoapMonth object and an XSD gMonth string.
using namespace System; using namespace System::Runtime::Remoting::Metadata::W3cXsd2001; int main() { // Parse an XSD gMonth to create a SoapMonth object. // The timezone of this object is +08:00. String^ xsdMonth = "--02--+08:00"; SoapMonth^ month = SoapMonth::Parse( xsdMonth ); // Print the month in XSD format. Console::WriteLine( "The month in XSD format is {0}.", month ); // Print the XSD type string of this particular SoapMonth object. Console::WriteLine( "The XSD type of the SoapMonth instance is {0}.", month->GetXsdType() ); // Print the value of the SoapMonth object. Console::WriteLine( "The value of the SoapMonth instance is {0}.", month->Value ); // Print the XSD type string of the SoapMonth class. Console::WriteLine( "The XSD type of the class SoapMonth is {0}.", SoapMonth::XsdType ); }
#using <mscorlib.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD gMonth to create a SoapMonth object.
// The timezone of this object is +08:00.
String* xsdMonth = S"--02--+08:00";
SoapMonth* month = SoapMonth::Parse(xsdMonth);
// Print the month in XSD format.
Console::WriteLine(S"The month in XSD format is {0}.",
month);
// Print the XSD type string of this particular SoapMonth object.
Console::WriteLine(S"The XSD type of the SoapMonth instance is {0}.",
month->GetXsdType());
// Print the value of the SoapMonth object.
Console::WriteLine(S"The value of the SoapMonth instance is {0}.",
__box(month->Value));
// Print the XSD type string of the SoapMonth class.
Console::WriteLine(S"The XSD type of the class SoapMonth is {0}.",
SoapMonth::XsdType);
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.