Files
2026-04-10 22:50:51 +02:00

64 lines
2.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides data for the MethodName<see langword="Completed" /> event.</summary>
// Token: 0x02000188 RID: 392
[Token(Token = "0x2000188")]
public class RunWorkerCompletedEventArgs : AsyncCompletedEventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.RunWorkerCompletedEventArgs" /> class.</summary>
/// <param name="result">The result of an asynchronous operation.</param>
/// <param name="error">Any error that occurred during the asynchronous operation.</param>
/// <param name="cancelled">A value indicating whether the asynchronous operation was canceled.</param>
// Token: 0x06000A65 RID: 2661 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A65")]
[Address(RVA = "0x4D8590", Offset = "0x4D7390", VA = "0x1804D8590")]
public RunWorkerCompletedEventArgs(object result, Exception error, bool cancelled)
{
}
/// <summary>Gets a value that represents the result of an asynchronous operation.</summary>
/// <returns>An <see cref="T:System.Object" /> representing the result of an asynchronous operation.</returns>
/// <exception cref="T:System.Reflection.TargetInvocationException">
/// <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error" /> is not <see langword="null" />. The <see cref="P:System.Exception.InnerException" /> property holds a reference to <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Error" />.</exception>
/// <exception cref="T:System.InvalidOperationException">
/// <see cref="P:System.ComponentModel.AsyncCompletedEventArgs.Cancelled" /> is <see langword="true" />.</exception>
// Token: 0x1700020A RID: 522
// (get) Token: 0x06000A66 RID: 2662 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700020A")]
public object Result
{
[Token(Token = "0x6000A66")]
[Address(RVA = "0x4D85D0", Offset = "0x4D73D0", VA = "0x1804D85D0")]
get
{
return null;
}
}
/// <summary>Gets a value that represents the user state.</summary>
/// <returns>An <see cref="T:System.Object" /> representing the user state.</returns>
// Token: 0x1700020B RID: 523
// (get) Token: 0x06000A67 RID: 2663 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700020B")]
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public new object UserState
{
[Token(Token = "0x6000A67")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
get
{
return null;
}
}
// Token: 0x040005ED RID: 1517
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x40005ED")]
private object result;
}
}