SoapDateTime Class

 

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)

System::Object
  System.Runtime.Remoting.Metadata.W3cXsd2001::SoapDateTime

[ComVisibleAttribute(true)]
public ref class SoapDateTime sealed 

NameDescription
System_CAPS_pubmethodSoapDateTime()

Creates an instance of SoapDateTime.

NameDescription
System_CAPS_pubpropertySystem_CAPS_staticXsdType

Gets the XML Schema definition language (XSD) of the current SOAP type.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticParse(String^)

Converts the specified String into a DateTime object.

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

System_CAPS_pubmethodSystem_CAPS_staticToString(DateTime)

Returns the specified DateTime object as a String.

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 );

}

.NET Framework
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.

Return to top
Show: