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