| IRequestHandlerOnResourceLoadComplete Method  | 
Version 57.0.0
            Called on the CEF IO thread when a resource load has completed.
            
 
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 57.0.0.0 (57.0.0.0)
Syntaxvoid OnResourceLoadComplete(
	IWebBrowser browserControl,
	IBrowser browser,
	IFrame frame,
	IRequest request,
	IResponse response,
	UrlRequestStatus status,
	long receivedContentLength
)
void OnResourceLoadComplete(
	IWebBrowser^ browserControl, 
	IBrowser^ browser, 
	IFrame^ frame, 
	IRequest^ request, 
	IResponse^ response, 
	UrlRequestStatus status, 
	long 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