using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Identifies the type of data operation performed by a method, as specified by the applied to the method. // Token: 0x0200010C RID: 268 [Token(Token = "0x200010C")] public enum DataObjectMethodType { /// Indicates that a method is used for a data operation that fills a object. // Token: 0x040004A9 RID: 1193 [Token(Token = "0x40004A9")] Fill, /// Indicates that a method is used for a data operation that retrieves data. // Token: 0x040004AA RID: 1194 [Token(Token = "0x40004AA")] Select, /// Indicates that a method is used for a data operation that updates data. // Token: 0x040004AB RID: 1195 [Token(Token = "0x40004AB")] Update, /// Indicates that a method is used for a data operation that inserts data. // Token: 0x040004AC RID: 1196 [Token(Token = "0x40004AC")] Insert, /// Indicates that a method is used for a data operation that deletes data. // Token: 0x040004AD RID: 1197 [Token(Token = "0x40004AD")] Delete } }