This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,34 @@
using System;
namespace System.Threading
{
/// <summary>Provides data for the <see cref="E:System.Windows.Forms.Application.ThreadException" /> event.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x020002ED RID: 749
public class ThreadExceptionEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadExceptionEventArgs" /> class.</summary>
/// <param name="t">The <see cref="T:System.Exception" /> that occurred. </param>
// Token: 0x06001B33 RID: 6963 RVA: 0x00063DC4 File Offset: 0x00061FC4
public ThreadExceptionEventArgs(Exception t)
{
this.exception = t;
}
/// <summary>Gets the <see cref="T:System.Exception" /> that occurred.</summary>
/// <returns>The <see cref="T:System.Exception" /> that occurred.</returns>
/// <filterpriority>1</filterpriority>
// Token: 0x1700084A RID: 2122
// (get) Token: 0x06001B34 RID: 6964 RVA: 0x00063DD4 File Offset: 0x00061FD4
public Exception Exception
{
get
{
return this.exception;
}
}
// Token: 0x040015D1 RID: 5585
private Exception exception;
}
}