using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Globalization { /// Defines the formatting options that customize string parsing for some date and time parsing methods. // Token: 0x020002D3 RID: 723 [Token(Token = "0x20002D3")] [Flags] [ComVisible(true)] [Serializable] public enum DateTimeStyles { /// Default formatting options must be used. This value represents the default style for the , , and methods. // Token: 0x04000EDB RID: 3803 [Token(Token = "0x4000EDB")] None = 0, /// Leading white-space characters must be ignored during parsing, except if they occur in the format patterns. // Token: 0x04000EDC RID: 3804 [Token(Token = "0x4000EDC")] AllowLeadingWhite = 1, /// Trailing white-space characters must be ignored during parsing, except if they occur in the format patterns. // Token: 0x04000EDD RID: 3805 [Token(Token = "0x4000EDD")] AllowTrailingWhite = 2, /// Extra white-space characters in the middle of the string must be ignored during parsing, except if they occur in the format patterns. // Token: 0x04000EDE RID: 3806 [Token(Token = "0x4000EDE")] AllowInnerWhite = 4, /// Extra white-space characters anywhere in the string must be ignored during parsing, except if they occur in the format patterns. This value is a combination of the , , and values. // Token: 0x04000EDF RID: 3807 [Token(Token = "0x4000EDF")] AllowWhiteSpaces = 7, /// 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. // Token: 0x04000EE0 RID: 3808 [Token(Token = "0x4000EE0")] NoCurrentDateDefault = 8, /// 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 , 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 , no conversion occurs. If the input string does not denote a local or UTC time, no conversion occurs and the resulting property is . // Token: 0x04000EE1 RID: 3809 [Token(Token = "0x4000EE1")] AdjustToUniversal = 16, /// If no time zone is specified in the parsed string, the string is assumed to denote a local time. // Token: 0x04000EE2 RID: 3810 [Token(Token = "0x4000EE2")] AssumeLocal = 32, /// If no time zone is specified in the parsed string, the string is assumed to denote a UTC. // Token: 0x04000EE3 RID: 3811 [Token(Token = "0x4000EE3")] AssumeUniversal = 64, /// The field of a date is preserved when a object is converted to a string using the "o" or "r" standard format specifier, and the string is then converted back to a object. // Token: 0x04000EE4 RID: 3812 [Token(Token = "0x4000EE4")] RoundtripKind = 128 } }