using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides data for the MethodName event. // Token: 0x02000184 RID: 388 [Token(Token = "0x2000184")] public class RunWorkerCompletedEventArgs : AsyncCompletedEventArgs { /// Initializes a new instance of the class. /// The result of an asynchronous operation. /// Any error that occurred during the asynchronous operation. /// A value indicating whether the asynchronous operation was canceled. // Token: 0x06000A4F RID: 2639 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A4F")] [Address(RVA = "0xC27F70", Offset = "0xC26F70", VA = "0x180C27F70")] public RunWorkerCompletedEventArgs(object result, Exception error, bool cancelled) { } /// Gets a value that represents the result of an asynchronous operation. /// An representing the result of an asynchronous operation. /// /// is not . The property holds a reference to . /// /// is . // Token: 0x17000206 RID: 518 // (get) Token: 0x06000A50 RID: 2640 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000206")] public object Result { [Token(Token = "0x6000A50")] [Address(RVA = "0xC27FB0", Offset = "0xC26FB0", VA = "0x180C27FB0")] get { return null; } } /// Gets a value that represents the user state. /// An representing the user state. // Token: 0x17000207 RID: 519 // (get) Token: 0x06000A51 RID: 2641 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000207")] [Browsable(false)] [EditorBrowsable(EditorBrowsableState.Never)] public new object UserState { [Token(Token = "0x6000A51")] [Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")] get { return null; } } // Token: 0x040005E0 RID: 1504 [FieldOffset(Offset = "0x28")] [Token(Token = "0x40005E0")] private object result; } }