using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides data for a cancelable event. // Token: 0x020000F3 RID: 243 [Token(Token = "0x20000F3")] public class CancelEventArgs : EventArgs { /// Initializes a new instance of the class with the property set to . // Token: 0x060005F2 RID: 1522 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60005F2")] [Address(RVA = "0x495C80", Offset = "0x494A80", VA = "0x180495C80")] public CancelEventArgs() { } /// Initializes a new instance of the class with the property set to the given value. /// /// to cancel the event; otherwise, . // Token: 0x060005F3 RID: 1523 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60005F3")] [Address(RVA = "0x495CE0", Offset = "0x494AE0", VA = "0x180495CE0")] public CancelEventArgs(bool cancel) { } /// Gets or sets a value indicating whether the event should be canceled. /// /// if the event should be canceled; otherwise, . // Token: 0x170000FE RID: 254 // (get) Token: 0x060005F4 RID: 1524 RVA: 0x000045F0 File Offset: 0x000027F0 // (set) Token: 0x060005F5 RID: 1525 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170000FE")] public bool Cancel { [Token(Token = "0x60005F4")] [Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0")] get { return default(bool); } [Token(Token = "0x60005F5")] [Address(RVA = "0x495D50", Offset = "0x494B50", VA = "0x180495D50")] set { } } // Token: 0x0400046F RID: 1135 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400046F")] private bool cancel; } }