Click or drag to resize

CefLoadHandlerOnLoadingStateChange Method

Called when the loading state has changed. This callback will be executed twice -- once when loading is initiated either programmatically or by user action, and once when loading is terminated due to completion, cancellation of failure. It will be called before any calls to OnLoadStart and after all calls to OnLoadError and/or OnLoadEnd.

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 OnLoadingStateChange(
	CefBrowser browser,
	bool isLoading,
	bool canGoBack,
	bool canGoForward
)

Parameters

browser  CefBrowser
 
isLoading  Boolean
 
canGoBack  Boolean
 
canGoForward  Boolean
 
See Also