System.UnhandledExceptionEventArgs
namespace System
{
public class UnhandledExceptionEventArgs :
EventArgs
{
public object ExceptionObject { get; }
public bool IsTerminating { get; }
public UnhandledExceptionEventArgs(
object exception,
bool isTerminating);
}
}