31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading.Tasks
|
|
{
|
|
/// <summary>Provides data for the event that is raised when a faulted <see cref="T:System.Threading.Tasks.Task" />'s exception goes unobserved.</summary>
|
|
// Token: 0x020003B3 RID: 947
|
|
[Token(Token = "0x20003B3")]
|
|
public class UnobservedTaskExceptionEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.UnobservedTaskExceptionEventArgs" /> class with the unobserved exception.</summary>
|
|
/// <param name="exception">The Exception that has gone unobserved.</param>
|
|
// 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;
|
|
}
|
|
}
|