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: 0x02000108 RID: 264 [Token(Token = "0x2000108")] public enum DataObjectMethodType { /// Indicates that a method is used for a data operation that fills a object. // Token: 0x0400049C RID: 1180 [Token(Token = "0x400049C")] Fill, /// Indicates that a method is used for a data operation that retrieves data. // Token: 0x0400049D RID: 1181 [Token(Token = "0x400049D")] Select, /// Indicates that a method is used for a data operation that updates data. // Token: 0x0400049E RID: 1182 [Token(Token = "0x400049E")] Update, /// Indicates that a method is used for a data operation that inserts data. // Token: 0x0400049F RID: 1183 [Token(Token = "0x400049F")] Insert, /// Indicates that a method is used for a data operation that deletes data. // Token: 0x040004A0 RID: 1184 [Token(Token = "0x40004A0")] Delete } }