You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Event called after the underlying CEF browser instance has been created.
613
-
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
614
-
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
615
-
/// To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
616
-
/// (The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
617
-
/// </summary>
618
-
publiceventEventHandlerBrowserInitialized;
619
-
/// <summary>
620
596
/// Occurs when the browser address changed.
621
597
/// It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
622
598
/// thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
@@ -640,6 +616,7 @@ public bool IsBrowserInitialized
640
616
/// that you set <paramref name="automaticallyCreateBrowser"/> to false, subscribe to the event and then call <see cref="CreateBrowser(IWindowInfo, IBrowserSettings)"/>
641
617
/// to ensure you are subscribe to the event before it's fired (Issue https://github.com/cefsharp/CefSharp/issues/3552).
642
618
/// </summary>
619
+
/// <param name="id">id</param>
643
620
/// <param name="address">Initial address (url) to load</param>
644
621
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
645
622
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
@@ -650,15 +627,15 @@ public bool IsBrowserInitialized
650
627
/// you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
/// <exception cref="System.Exception">An instance of the underlying browser has already been created, this method can only be called once.</exception>
795
-
/// <returns>
796
-
/// A <see cref="Task{IBrowser}"/> that represents the creation of the underlying CEF browser (<see cref="IBrowser"/> instance.
797
-
/// When the task completes then the CEF Browser will have been created and you can start performing basic tasks.
798
-
/// Note that the control's <see cref="BrowserInitialized"/> event will be invoked after this task completes.
0 commit comments