Click or drag to resize

IRenderProcessMessageHandlerOnUncaughtException Method

Version 94.4.20
OnUncaughtException is called for global uncaught exceptions in a frame. Execution of this callback is disabled by default. To enable set CefSettings.UncaughtExceptionStackSize > 0.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
void OnUncaughtException(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IFrame frame,
	JavascriptException exception
)

Parameters

chromiumWebBrowser
Type: CefSharpIWebBrowser
The ChromiumWebBrowser control
browser
Type: CefSharpIBrowser
The browser object
frame
Type: CefSharpIFrame
The frame
exception
Type: CefSharpJavascriptException
The exception object with the message and stacktrace.
See Also