//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Threading { using System.Threading; using System.Diagnostics; using System; /// /// Represents the method that will handle the System.Windows.Forms.Application.OnThreadException /// event of a Thread.OnThreadException. /// public delegate void ThreadExceptionEventHandler(object sender, ThreadExceptionEventArgs e); }