Click or drag to resize

CefRequestHandlerOnBeforeResourceLoad Method

Called on the IO thread before a resource request is loaded. The |request| object may be modified. Return RV_CONTINUE to continue the request immediately. Return RV_CONTINUE_ASYNC and call CefRequestCallback:: Continue() at a later time to continue or cancel the request asynchronously. Return RV_CANCEL to cancel the request immediately.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual CefReturnValue OnBeforeResourceLoad(
	CefBrowser browser,
	CefFrame frame,
	CefRequest request,
	CefRequestCallback callback
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
request  CefRequest
 
callback  CefRequestCallback
 

Return Value

CefReturnValue
See Also