Click or drag to resize

CefRequestHandlerOnResourceLoadComplete Method

Called on the IO thread when a resource load has completed. |request| and |response| represent the request and response respectively and cannot be modified in this callback. |status| indicates the load completion status. |received_content_length| is the number of response bytes actually read.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual void OnResourceLoadComplete(
	CefBrowser browser,
	CefFrame frame,
	CefRequest request,
	CefResponse response,
	CefUrlRequestStatus status,
	long receivedContentLength
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
request  CefRequest
 
response  CefResponse
 
status  CefUrlRequestStatus
 
receivedContentLength  Int64
 
See Also