Click or drag to resize

LoadHandlerOnLoadingStateChange Method

Version 130.1.90
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. This method will be called on the CEF UI thread. Blocking this thread will likely cause your UI to become unresponsive and/or hang.

Namespace: CefSharp.WinForms.Handler
Assembly: CefSharp.WinForms (in CefSharp.WinForms.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
protected override void OnLoadingStateChange(
	IWebBrowser chromiumWebBrowser,
	LoadingStateChangedEventArgs args
)

Parameters

chromiumWebBrowser  IWebBrowser
the ChromiumWebBrowser control
args  LoadingStateChangedEventArgs

[Missing <param name="args"/> documentation for "M:CefSharp.WinForms.Handler.LoadHandler.OnLoadingStateChange(CefSharp.IWebBrowser,CefSharp.LoadingStateChangedEventArgs)"]

See Also