SoapDateTime Class
Provides static methods for the serialization and deserialization of DateTime to a string that is formatted as XSD dateTime.
Assembly: mscorlib (in mscorlib.dll)
The following code example shows how to use the methods in the SoapDateTime class to convert between a DateTime object and an XSD dateTime string.
using namespace System; using namespace System::Runtime::Remoting::Metadata::W3cXsd2001; int main() { // Parse an XSD dateTime to create a DateTime object. String^ xsdDateTime = "2003-02-04T13:58:59.9999999+03:00"; DateTime dateTime = SoapDateTime::Parse( xsdDateTime ); // Serialize a DateTime object as an XSD dateTime string. Console::WriteLine( "The date in XSD format is {0}.", SoapDateTime::ToString( dateTime ) ); // Print out the XSD type string of the SoapDateTime class. Console::WriteLine( "The XSD type of SoapDateTime is {0}.", SoapDateTime::XsdType ); }
#using <mscorlib.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD dateTime to create a DateTime object.
String* xsdDateTime = S"2003-02-04T13:58:59.9999999+03:00";
DateTime dateTime = SoapDateTime::Parse(xsdDateTime);
// Serialize a DateTime object as an XSD dateTime string.
Console::WriteLine(S"The date in XSD format is {0}.",
SoapDateTime::ToString(dateTime));
// Print out the XSD type string of the SoapDateTime class.
Console::WriteLine(S"The XSD type of SoapDateTime is {0}.",
SoapDateTime::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: