Click or drag to resize

IRenderProcessMessageHandlerOnUncaughtException Method

Version 86.0.240
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: 86.0.240.0 (86.0.240.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