Files
Apr2020-Cpp2Il-Dump/mscorlib/System/UnhandledExceptionEventHandler.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

17 lines
649 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
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 UnhandledExceptionEventArgs that contains the event data.</param>
// Token: 0x02000157 RID: 343
// (Invoke) Token: 0x06000E4B RID: 3659
[Token(Token = "0x2000157")]
[ComVisible(true)]
[Serializable]
public delegate void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e);
}