SoapYear Class
Wraps an XSD gYear type.
Assembly: mscorlib (in mscorlib.dll)
The following code example demonstrates using the SoapYear class to wrap the XSD gYear type.
using namespace System; using namespace System::Runtime::Remoting::Metadata::W3cXsd2001; int main() { // Parse an XSD date to create a SoapYear object. String^ xsdDate = "2003"; SoapYear^ date = SoapYear::Parse( xsdDate ); // Serialize a DateTime object as an XSD date string. Console::WriteLine( "The date in XSD format is {0}.", date ); // Print out the XSD type string of this particular SoapYear object. Console::WriteLine( "The XSD type of the SoapYear instance is {0}.", date->GetXsdType() ); // Print out the value of the SoapYear object. Console::WriteLine( "The value of the SoapYear instance is {0}.", date->Value ); // Print out the sign of the SoapYear object. Console::WriteLine( "The sign of the SoapYear instance is {0}.", date->Sign ); // Print out the XSD type string of the SoapYear class. Console::WriteLine( "The XSD type of SoapYear is {0}.", SoapYear::XsdType ); }
#using <mscorlib.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD date to create a SoapYear object.
String* xsdDate = S"2003";
SoapYear* date = SoapYear::Parse(xsdDate);
// Serialize a DateTime object as an XSD date string.
Console::WriteLine(S"The date in XSD format is {0}.",
date);
// Print out the XSD type string of this particular SoapYear object.
Console::WriteLine(S"The XSD type of the SoapYear instance is {0}.",
date->GetXsdType());
// Print out the value of the SoapYear object.
Console::WriteLine(S"The value of the SoapYear instance is {0}.",
__box(date->Value));
// Print out the sign of the SoapYear object.
Console::WriteLine(S"The sign of the SoapYear instance is {0}.",
__box(date->Sign));
// Print out the XSD type string of the SoapYear class.
Console::WriteLine(S"The XSD type of SoapYear is {0}.",
SoapYear::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.
Community Additions
Show: