LoadHandlerOnLoadingStateChange Method |
Version 106.0.290
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: 106.0.290.0 (106.0.290.0)
Syntax protected override void OnLoadingStateChange(
IWebBrowser chromiumWebBrowser,
LoadingStateChangedEventArgs args
)
protected:
virtual void OnLoadingStateChange(
IWebBrowser^ chromiumWebBrowser,
LoadingStateChangedEventArgs^ args
) override
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