Click or drag to resize

IRequestHandlerOnBeforeResourceLoad Method

Version 71.0.0
Called before a resource request is loaded. For async processing return ContinueAsync and execute Continue(Boolean) or Cancel

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 71.0.0.0 (71.0.0.0)
Syntax
CefReturnValue OnBeforeResourceLoad(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IFrame frame,
	IRequest request,
	IRequestCallback callback
)

Parameters

chromiumWebBrowser
Type: CefSharpIWebBrowser
The ChromiumWebBrowser control
browser
Type: CefSharpIBrowser
the browser object
frame
Type: CefSharpIFrame
The frame object
request
Type: CefSharpIRequest
the request object - can be modified in this callback.
callback
Type: CefSharpIRequestCallback
Callback interface used for asynchronous continuation of url requests.

Return Value

Type: CefReturnValue
To cancel loading of the resource return Cancel or Continue to allow the resource to load normally. For async return ContinueAsync
See Also