using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Provides data for the event. // Token: 0x02000173 RID: 371 [Token(Token = "0x2000173")] public class ProgressChangedEventArgs : EventArgs { /// Initializes a new instance of the class. /// The percentage of an asynchronous task that has been completed. /// A unique user state. // Token: 0x06000962 RID: 2402 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000962")] [Address(RVA = "0x4FD920", Offset = "0x4FC720", VA = "0x1804FD920")] public ProgressChangedEventArgs(int progressPercentage, object userState) { } /// Gets the asynchronous task progress percentage. /// A percentage value indicating the asynchronous task progress. // Token: 0x170001D2 RID: 466 // (get) Token: 0x06000963 RID: 2403 RVA: 0x00005CD0 File Offset: 0x00003ED0 [Token(Token = "0x170001D2")] [SRDescription("Percentage progress made in operation.")] public int ProgressPercentage { [Token(Token = "0x6000963")] [Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")] get { return 0; } } /// Gets a unique user state. /// A unique indicating the user state. // Token: 0x170001D3 RID: 467 // (get) Token: 0x06000964 RID: 2404 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001D3")] [SRDescription("User-supplied state to identify operation.")] public object UserState { [Token(Token = "0x6000964")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] get { return null; } } // Token: 0x0400058C RID: 1420 [FieldOffset(Offset = "0x10")] [Token(Token = "0x400058C")] private readonly int progressPercentage; // Token: 0x0400058D RID: 1421 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400058D")] private readonly object userState; } }