Files
Dec2017-Script-Dump/mscorlib/System/UnhandledExceptionEventHandler.cs
2026-06-04 11:42:34 +02:00

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);
}