Click or drag to resize

CefLoadHandlerOnLoadError Method

Called when the resource load for a navigation fails or is canceled. |errorCode| is the error code number, |errorText| is the error text and |failedUrl| is the URL that failed to load. See net\base\net_error_list.h for complete descriptions of the error codes.

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 OnLoadError(
	CefBrowser browser,
	CefFrame frame,
	CefErrorCode errorCode,
	string errorText,
	string failedUrl
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
errorCode  CefErrorCode
 
errorText  String
 
failedUrl  String
 
See Also