[ Team LiB ] Previous Section Next Section

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( )}

    [ Team LiB ] Previous Section Next Section