Click or drag to resize
IRequestHandlerOnResourceLoadComplete Method
Version 51.0.0
Called on the CEF IO thread when a resource load has completed.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
Syntax
void OnResourceLoadComplete(
	IWebBrowser browserControl,
	IBrowser browser,
	IFrame frame,
	IRequest request,
	IResponse response,
	UrlRequestStatus status,
	long receivedContentLength
)

Parameters

browserControl
Type: CefSharpIWebBrowser
The ChromiumWebBrowser control
browser
Type: CefSharpIBrowser
the browser object
frame
Type: CefSharpIFrame
The frame that is being redirected.
request
Type: CefSharpIRequest
the request object - cannot be modified in this callback
response
Type: CefSharpIResponse
the response object - cannot be modified in this callback
status
Type: CefSharpUrlRequestStatus
indicates the load completion status
receivedContentLength
Type: SystemInt64
is the number of response bytes actually read.
See Also