| IRequestHandlerOnBeforeResourceLoad Method  | 
Version 57.0.0 
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 57.0.0.0 (57.0.0.0)
SyntaxCefReturnValue OnBeforeResourceLoad(
	IWebBrowser browserControl,
	IBrowser browser,
	IFrame frame,
	IRequest request,
	IRequestCallback callback
)
CefReturnValue OnBeforeResourceLoad(
	IWebBrowser^ browserControl, 
	IBrowser^ browser, 
	IFrame^ frame, 
	IRequest^ request, 
	IRequestCallback^ callback
)
Parameters
- browserControl
 - 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: 
CefReturnValueTo cancel loading of the resource return 
Cancel
            or 
Continue to allow the resource to load normally. For async
            return 
ContinueAsync
See Also