ILoadHandlerOnLoadingStateChange Method |
Version 51.0.0
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: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
Syntax void OnLoadingStateChange(
IWebBrowser browserControl,
LoadingStateChangedEventArgs loadingStateChangedArgs
)
void OnLoadingStateChange(
IWebBrowser^ browserControl,
LoadingStateChangedEventArgs^ loadingStateChangedArgs
)
Parameters
- browserControl
- Type: CefSharpIWebBrowser
The IWebBrowser control this popup is related to. - loadingStateChangedArgs
- Type: CefSharpLoadingStateChangedEventArgs
args
See Also