DateTimeStyles Enumeration
Defines the formatting options that customize string parsing for some date and time parsing methods.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.GlobalizationAssembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
![]() ![]() | None | Default formatting options must be used. This value represents the default style for the DateTime::Parse, DateTime::ParseExact, and DateTime::TryParse methods. |
![]() ![]() | AllowLeadingWhite | Leading white-space characters must be ignored during parsing, except if they occur in the DateTimeFormatInfo format patterns. |
![]() ![]() | AllowTrailingWhite | Trailing white-space characters must be ignored during parsing, except if they occur in the DateTimeFormatInfo format patterns. |
![]() ![]() | AllowInnerWhite | Extra white-space characters in the middle of the string must be ignored during parsing, except if they occur in the DateTimeFormatInfo format patterns. |
![]() ![]() | AllowWhiteSpaces | Extra white-space characters anywhere in the string must be ignored during parsing, except if they occur in the DateTimeFormatInfo format patterns. This value is a combination of the AllowLeadingWhite, AllowTrailingWhite, and AllowInnerWhite values. |
![]() ![]() | NoCurrentDateDefault | If the parsed string contains only the time and not the date, the parsing methods assume the Gregorian date with year = 1, month = 1, and day = 1. If this value is not used, the current date is assumed. |
![]() ![]() | AdjustToUniversal | Date and time are returned as a Coordinated Universal Time (UTC). If the input string denotes a local time, through a time zone specifier or AssumeLocal, the date and time are converted from the local time to UTC. If the input string denotes a UTC time, through a time zone specifier or AssumeUniversal, no conversion occurs. If the input string does not denote a local or UTC time, no conversion occurs and the resulting Kind property is Unspecified. This value cannot be used with RoundtripKind. |
![]() ![]() | AssumeLocal | If no time zone is specified in the parsed string, the string is assumed to denote a local time. This value cannot be used with AssumeUniversal or RoundtripKind. |
![]() ![]() | AssumeUniversal | If no time zone is specified in the parsed string, the string is assumed to denote a UTC. This value cannot be used with AssumeLocal or RoundtripKind. |
![]() ![]() | RoundtripKind | The DateTimeKind field of a date is preserved when a DateTime object is converted to a string using the "o" or "r" standard format specifier, and the string is then converted back to a DateTime object. |
DateTimeStyles values can be used with any of the following date and time parsing methods that include a styles parameter to define the interpretation of the style elements that may be present in the string to be parsed:
The ParseExact and TryParseExact methods can use any of the DateTimeStyles values. However, if none of the Allow* values is selected, the input string must have exactly the same white-space characters as the format string.
If the input string does not contain any indication of the time zone, the date and time parsing methods interpret the value of the date and time string based on the time zone setting for the operating system. To convert the date and time to the Universal Time or Greenwich Mean Time (GMT), the application should use the AdjustToUniversal value. The same effect can be achieved by calling the DateTime::ToUniversalTime or DateTimeOffset::ToUniversalTime method. However, using the AdjustToUniversal value with the date and time parsing method is more efficient.
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.

