SoapDateTime Class
.NET Framework 3.0
Provides static methods for the serialization and deserialization of DateTime to a string that is formatted as XSD dateTime.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
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.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// 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 the XSD type string of the SoapDateTime class.
Console.WriteLine("The XSD type of SoapDateTime is {0}.",
System.Convert.ToString(SoapDateTime.get_XsdType()));
} //main
} //Demo
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: