<dateTimeSerialization> Element
Determines the serialization mode of DateTime objects.
<configuration>
<dateTimeSerialization>
Syntax
<dateTimeSerialization
mode = "Roundtrip|Local"
/>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
Attributes | Description |
---|---|
mode |
Optional. Specifies the serialization mode. Set to one of the DateTimeSerializationSection.DateTimeSerializationMode values. The default is RoundTrip. |
Child Elements
None.
Parent Elements
Element | Description |
---|---|
system.xml.serialization | The top-level element for controlling XML serialization. |
Remarks
When this property is set to Local, DateTime objects are always formatted as the local time. That is, local time zone information is always included with the serialized data.
When this property is set to Roundtrip, DateTime objects are examined to determine whether they are in the local, UTC, or an unspecified time zone. The DateTime objects are then serialized in such a way that this information is preserved. This is the default behavior and is the recommended behavior for all new applications that do not communicate with older versions of the framework.