Click or drag to resize

CefRequestHandlerOnResourceResponse Method

Called on the IO thread when a resource response is received. To allow the resource to load normally return false. To redirect or retry the resource modify |request| (url, headers or post body) and return true. The |response| object cannot be modified in this callback.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual bool OnResourceResponse(
	CefBrowser browser,
	CefFrame frame,
	CefRequest request,
	CefResponse response
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
request  CefRequest
 
response  CefResponse
 

Return Value

Boolean
See Also