Click or drag to resize

IRenderProcessMessageHandler.OnUncaughtException Method

Version 103.0.120
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: 103.0.120.0 (103.0.120.0)
Syntax
void OnUncaughtException(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IFrame frame,
	JavascriptException exception
)

Parameters

chromiumWebBrowser
Type: CefSharp.IWebBrowser
The ChromiumWebBrowser control
browser
Type: CefSharp.IBrowser
The browser object
frame
Type: CefSharp.IFrame
The frame
exception
Type: CefSharp.JavascriptException
The exception object with the message and stacktrace.
See Also