using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides data for the MethodName event.
// Token: 0x02000188 RID: 392
[Token(Token = "0x2000188")]
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: 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)
{
}
/// 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: 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;
}
}
/// Gets a value that represents the user state.
/// An representing the user state.
// 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;
}
}