35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
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;
|
|
}
|
|
}
|