using System; using Cpp2IlInjected; namespace System.Data { /// Describes the serialization format for columns in a . // Token: 0x02000038 RID: 56 [Token(Token = "0x2000038")] public enum DataSetDateTime { /// /// is always stored in Local. If or is assigned to a column in this mode, it is first converted into Local. Serialization in this mode is always performed in Local. There is an offset during serialization. // Token: 0x040000D5 RID: 213 [Token(Token = "0x40000D5")] Local = 1, /// /// is always stored in Unspecified. If or is assigned to a column in this mode, it is first converted into . Serialization in this mode does not cause an offset. // Token: 0x040000D6 RID: 214 [Token(Token = "0x40000D6")] Unspecified, /// /// is stored in Unspecified. If or is assigned to a column in this mode, it is first converted into . Serialization in this mode causes offset. This is the default behavior and is backward compatible. This option should be thought of as being Unspecified in storage but applying an offset that is similar to during serialization. // Token: 0x040000D7 RID: 215 [Token(Token = "0x40000D7")] UnspecifiedLocal, /// /// is stored in Universal Coordinated Time (UTC). If or is assigned to a column in this mode, it is first converted into format. Serialization in this mode is always performed in . There is no offset during serialization. // Token: 0x040000D8 RID: 216 [Token(Token = "0x40000D8")] Utc } }