Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/UnhandledExceptionEventHandler.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200015E RID: 350
// (Invoke) Token: 0x06000E7F RID: 3711
[Token(Token = "0x200015E")]
[ComVisible(true)]
[Serializable]
public delegate void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e);
}