| ILoadHandlerOnLoadingStateChange Method  | 
Version 103.0.120 
            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
    Assembly:
   CefSharp (in CefSharp.dll) Version: 103.0.120.0 (103.0.120.0)
 Syntax
Syntaxvoid OnLoadingStateChange(
	IWebBrowser chromiumWebBrowser,
	LoadingStateChangedEventArgs loadingStateChangedArgs
)
void OnLoadingStateChange(
	IWebBrowser^ chromiumWebBrowser, 
	LoadingStateChangedEventArgs^ loadingStateChangedArgs
)
Parameters
- chromiumWebBrowser
- Type: CefSharpIWebBrowser
 the ChromiumWebBrowser control
- loadingStateChangedArgs
- Type: CefSharpLoadingStateChangedEventArgs
 args
 See Also
See Also