13 lines
632 B
C#
13 lines
632 B
C#
using System;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Application.ThreadException" /> event of an <see cref="T:System.Windows.Forms.Application" />.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.Threading.ThreadExceptionEventArgs" /> that contains the event data. </param>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000342 RID: 834
|
|
// (Invoke) Token: 0x06001CE1 RID: 7393
|
|
public delegate void ThreadExceptionEventHandler(object sender, ThreadExceptionEventArgs e);
|
|
}
|