IWebBrowserIsBrowserInitialized Property  | 
Version 93.1.111 
            A flag that indicates whether the WebBrowser is initialized (true) or not (false).
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 93.1.111.0 (93.1.111.0)
Syntaxbool IsBrowserInitialized { get; }property bool IsBrowserInitialized {
	bool get ();
}Property Value
Type: 
Booleantrue if this instance is browser initialized; otherwise, 
false.
RemarksIn the WPF control there are two IsBrowserInitialized properties, the ChromiumWebBrowser.IsBrowserInitialized
            property is implemented as a Dependency Property and fully supports data binding. This property
            can only be called from the UI Thread. The explicit IWebBrowser.IsBrowserInitialized interface implementation that
            can be called from any Thread.
See Also