IRequestHandlerOnBeforeResourceLoad Method |
Version 73.1.130
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 73.1.130.0 (73.1.130.0)
Syntax CefReturnValue OnBeforeResourceLoad(
IWebBrowser chromiumWebBrowser,
IBrowser browser,
IFrame frame,
IRequest request,
IRequestCallback callback
)
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:
CefReturnValueTo cancel loading of the resource return
Cancel
or
Continue to allow the resource to load normally. For async
return
ContinueAsyncSee Also