using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides data for the event. // Token: 0x020000F8 RID: 248 [Token(Token = "0x20000F8")] public class CollectionChangeEventArgs : EventArgs { /// Initializes a new instance of the class. /// One of the values that specifies how the collection changed. /// An that specifies the instance of the collection where the change occurred. // Token: 0x06000613 RID: 1555 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000613")] [Address(RVA = "0x497540", Offset = "0x496340", VA = "0x180497540")] public CollectionChangeEventArgs(CollectionChangeAction action, object element) { } /// Gets an action that specifies how the collection changed. /// One of the values. // Token: 0x1700010E RID: 270 // (get) Token: 0x06000614 RID: 1556 RVA: 0x00004668 File Offset: 0x00002868 [Token(Token = "0x1700010E")] public virtual CollectionChangeAction Action { [Token(Token = "0x6000614")] [Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560", Slot = "4")] get { return (CollectionChangeAction)0; } } /// Gets the instance of the collection with the change. /// An that represents the instance of the collection with the change, or if you refresh the collection. // Token: 0x1700010F RID: 271 // (get) Token: 0x06000615 RID: 1557 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700010F")] public virtual object Element { [Token(Token = "0x6000615")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "5")] get { return null; } } // Token: 0x04000484 RID: 1156 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000484")] private CollectionChangeAction action; // Token: 0x04000485 RID: 1157 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000485")] private object element; } }