using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides data for the event. // Token: 0x020000F4 RID: 244 [Token(Token = "0x20000F4")] 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: 0x060005FD RID: 1533 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60005FD")] [Address(RVA = "0xB942A0", Offset = "0xB932A0", VA = "0x180B942A0")] public CollectionChangeEventArgs(CollectionChangeAction action, object element) { } /// Gets an action that specifies how the collection changed. /// One of the values. // Token: 0x1700010A RID: 266 // (get) Token: 0x060005FE RID: 1534 RVA: 0x00004650 File Offset: 0x00002850 [Token(Token = "0x1700010A")] public virtual CollectionChangeAction Action { [Token(Token = "0x60005FE")] [Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000", 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: 0x1700010B RID: 267 // (get) Token: 0x060005FF RID: 1535 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700010B")] public virtual object Element { [Token(Token = "0x60005FF")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0", Slot = "5")] get { return null; } } // Token: 0x04000477 RID: 1143 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000477")] private CollectionChangeAction action; // Token: 0x04000478 RID: 1144 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000478")] private object element; } }