Click or drag to resize

RequestHandler.OnBeforeBrowse Method

Version 92.0.260
Called before browser navigation. If the navigation is allowed FrameLoadStart and FrameLoadEnd will be called. If the navigation is canceled LoadError will be called with an ErrorCode value of Aborted.

Namespace:  CefSharp.Handler
Assembly:  CefSharp (in CefSharp.dll) Version: 92.0.260.0 (92.0.260.0)
Syntax
protected virtual bool OnBeforeBrowse(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IFrame frame,
	IRequest request,
	bool userGesture,
	bool isRedirect
)

Parameters

chromiumWebBrowser
Type: CefSharp.IWebBrowser
the ChromiumWebBrowser control.
browser
Type: CefSharp.IBrowser
the browser object.
frame
Type: CefSharp.IFrame
The frame the request is coming from.
request
Type: CefSharp.IRequest
the request object - cannot be modified in this callback.
userGesture
Type: System.Boolean
The value will be true if the browser navigated via explicit user gesture (e.g. clicking a link) or false if it navigated automatically (e.g. via the DomContentLoaded event).
isRedirect
Type: System.Boolean
has the request been redirected.

Return Value

Type: Boolean
Return true to cancel the navigation or false to allow the navigation to proceed.
See Also