Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000184 RID: 388
[Token(Token = "0x2000184")]
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: 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)
{
}
/// <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: 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;
}
}
/// <summary>Gets a value that represents the user state.</summary>
/// <returns>An <see cref="T:System.Object" /> representing the user state.</returns>
// 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;
}
}