ThreadExceptionEventArgs

ThreadExceptionEventArgs

System.Threading (system.dll)class

This class represents the event arguments passed to a ThreadExceptionEventHandler. Exception contains the exception raised.

public class ThreadExceptionEventArgs : EventArgs {
// Public Constructors
   public ThreadExceptionEventArgs(Exception t);
// Public Instance Properties
   public Exception Exception{get; }
}

Hierarchy

System.Object System.EventArgs ThreadExceptionEventArgs

Passed To

ThreadExceptionEventHandler.{BeginInvoke( ), Invoke( )}



    Part II: Programming with the .NET Framework
    Part IV: API Quick Reference
    Chapter 26. System