DispatcherUnhandledExceptionFilterEventArgs.RequestCatch Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets whether the exception should be caught and the event handlers called.
public:
property bool RequestCatch { bool get(); void set(bool value); };
public bool RequestCatch { get; set; }
member this.RequestCatch : bool with get, set
Public Property RequestCatch As Boolean
Property Value
true
if the UnhandledException should be raised; otherwise; false
. The default value is true
.
Remarks
The UnhandledExceptionFilter event provides a means to not raise the UnhandledException event. The UnhandledException is raised first, and If RequestCatch on the DispatcherUnhandledExceptionFilterEventArgs is set to false
, the UnhandledException event will not be raised.
A previous handler in the event multicast might have already set this property to false
, indicating that the exception will not be caught. The "don't catch" behavior will override all others because it most likely means a debugging scenario.