0 out of 1 rated this helpful - Rate this topic

DateTimeKind Enumeration

Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
[SerializableAttribute]
[ComVisibleAttribute(true)]
public enum DateTimeKind
Member name Description
Supported by the XNA Framework Supported by Portable Class Library Unspecified The time represented is not specified as either local time or Coordinated Universal Time (UTC).
Supported by the XNA Framework Supported by Portable Class Library Utc The time represented is UTC.
Supported by the XNA Framework Supported by Portable Class Library Local The time represented is local time.

A member of the DateTimeKind enumeration is returned by the DateTime.Kind property.

The members of the DateTimeKind enumeration are used in conversion operations between local time and Coordinated Universal Time (UTC), but not in comparison or arithmetic operations. For more information about time conversions, see Converting Times Between Time Zones.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
DateTimeKind in WCF Serialization
Take care of DateTimeKind in Serialitzation , DateTimeKind.Unspecified and DateTimeKind.UTC date times send straight forward, but date times with DateTimeKind.Local will be converted from source computer local time time zone to destination computer time zone.

For example : 10:00 AM Local in a UTC Server , will be received as 11:00 in a Europe/Madrid (GMT+1) client or 12:00 on a (GMT+2) client.