using System;
using Cpp2IlInjected;
namespace System.Threading.Tasks
{
/// Provides data for the event that is raised when a faulted 's exception goes unobserved.
// Token: 0x020003B3 RID: 947
[Token(Token = "0x20003B3")]
public class UnobservedTaskExceptionEventArgs : EventArgs
{
/// Initializes a new instance of the class with the unobserved exception.
/// The Exception that has gone unobserved.
// Token: 0x0600222C RID: 8748 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600222C")]
[Address(RVA = "0xB57340", Offset = "0xB56340", VA = "0x180B57340")]
public UnobservedTaskExceptionEventArgs(AggregateException exception)
{
}
// Token: 0x0400131B RID: 4891
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400131B")]
private AggregateException m_exception;
// Token: 0x0400131C RID: 4892
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400131C")]
internal bool m_observed;
}
}