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)
| Name | Description | |
|---|---|---|
![]() | SoapDateTime() | Creates an instance of SoapDateTime. |
| Name | Description | |
|---|---|---|
![]() ![]() | XsdType | Gets the XML Schema definition language (XSD) of the current SOAP type. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() ![]() | Parse(String^) | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() ![]() | ToString(DateTime) |
For more information about XSD data types, see "XML Data Types Reference" in the MSDN Library at http://msdn.microsoft.com/library.
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 ); }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


