Click or drag to resize

LoadHandlerOnLoadingStateChange Method

Version 102.0.100
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: 102.0.100.0 (102.0.100.0)
Syntax
protected override void OnLoadingStateChange(
	IWebBrowser chromiumWebBrowser,
	LoadingStateChangedEventArgs args
)

Parameters

chromiumWebBrowser
Type: CefSharpIWebBrowser
the ChromiumWebBrowser control
args
Type: CefSharpLoadingStateChangedEventArgs

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

See Also