mscorlib(4.0.0.0) API with additions
DateTimeStyles.cs
2 
3 namespace System.Globalization
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum DateTimeStyles
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  AllowLeadingWhite = 0x1,
19  [__DynamicallyInvokable]
20  AllowTrailingWhite = 0x2,
22  [__DynamicallyInvokable]
23  AllowInnerWhite = 0x4,
25  [__DynamicallyInvokable]
26  AllowWhiteSpaces = 0x7,
28  [__DynamicallyInvokable]
31  [__DynamicallyInvokable]
32  AdjustToUniversal = 0x10,
34  [__DynamicallyInvokable]
35  AssumeLocal = 0x20,
37  [__DynamicallyInvokable]
38  AssumeUniversal = 0x40,
40  [__DynamicallyInvokable]
41  RoundtripKind = 0x80
42  }
43 }
Date and time are returned as a Coordinated Universal Time (UTC). If the input string denotes a local...
Definition: __Canon.cs:3
Extra white-space characters in the middle of the string must be ignored during parsing,...
If the parsed string contains only the time and not the date, the parsing methods assume the Gregoria...
Leading white-space characters must be ignored during parsing, except if they occur in the T:System....
Trailing white-space characters must be ignored during parsing, except if they occur in the T:System....
If no time zone is specified in the parsed string, the string is assumed to denote a UTC.
Specifies that the class can be serialized.
DateTimeStyles
Defines the formatting options that customize string parsing for some date and time parsing methods.
Extra white-space characters anywhere in the string must be ignored during parsing,...
If no time zone is specified in the parsed string, the string is assumed to denote a local time.
The T:System.DateTimeKind field of a date is preserved when a T:System.DateTime object is converted t...