16 lines
661 B
C#
16 lines
661 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Represents the method that will handle the event raised by an exception that is not handled by the application domain.</summary>
|
|
/// <param name="sender">The source of the unhandled exception event. </param>
|
|
/// <param name="e">An <paramref name="UnhandledExceptionEventArgs" /> that contains the event data. </param>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006EF RID: 1775
|
|
// (Invoke) Token: 0x06004244 RID: 16964
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public delegate void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e);
|
|
}
|