Application.OnThreadException(Exception) Method

Definition

Raises the ThreadException event.

public:
 static void OnThreadException(Exception ^ t);
public static void OnThreadException (Exception t);
static member OnThreadException : Exception -> unit
Public Shared Sub OnThreadException (t As Exception)

Parameters

t
Exception

An Exception that represents the exception that was thrown.

Remarks

Call OnThreadException to raise an exception that will halt processing of the application.

The Application class has a ThreadException event. You can attach an event handler to this event to do whatever custom processing you need for unhandled exceptions. If you do not attach an event handler, OnThreadException will execute the default behavior, which involves displaying a dialog box to inform the user that there has been an error.

OnThreadException only implements default exception behavior for unhandled exceptions that occur on threads owned by Windows Forms. Unhandled exceptions on other threads are handled by the UnhandledException event.

Applies to