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
/// Create a new OffScreen Chromium Browser. If you use <see cref="CefSharp.JavascriptBinding.JavascriptBindingSettings.LegacyBindingEnabled"/> = true then you must
637
+
/// Create a new ChromiumWebBrowser. If you use <see cref="CefSharp.JavascriptBinding.JavascriptBindingSettings.LegacyBindingEnabled"/> = true then you must
615
638
/// set <paramref name="automaticallyCreateBrowser"/> to false and call <see cref="CreateBrowser"/> after the objects are registered.
616
639
/// The underlying Chromium Embedded Framework(CEF) Browser is created asynchronouly, to subscribe to the <see cref="BrowserInitialized"/> event it is recommended
617
640
/// that you set <paramref name="automaticallyCreateBrowser"/> to false, subscribe to the event and then call <see cref="CreateBrowser(IWindowInfo, IBrowserSettings)"/>
@@ -627,7 +650,7 @@ public bool IsBrowserInitialized
627
650
/// you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
@@ -641,15 +664,15 @@ public ChromiumWebBrowser(string address = "",
641
664
}
642
665
643
666
/// <summary>
644
-
/// Finalizes an instance of the <see cref="ChromiumWebBrowser"/> class.
667
+
/// Finalizes an instance of the <see cref="OutOfProcessChromiumWebBrowser"/> class.
645
668
/// </summary>
646
-
~ChromiumWebBrowser()
669
+
~OutOfProcessChromiumWebBrowser()
647
670
{
648
671
Dispose(false);
649
672
}
650
673
651
674
/// <summary>
652
-
/// Releases all resources used by the <see cref="ChromiumWebBrowser"/> object
675
+
/// Releases all resources used by the <see cref="OutOfProcessChromiumWebBrowser"/> object
653
676
/// </summary>
654
677
publicvoidDispose()
655
678
{
@@ -658,7 +681,7 @@ public void Dispose()
658
681
}
659
682
660
683
/// <summary>
661
-
/// Releases unmanaged and - optionally - managed resources for the <see cref="ChromiumWebBrowser"/>
684
+
/// Releases unmanaged and - optionally - managed resources for the <see cref="OutOfProcessChromiumWebBrowser"/>
662
685
/// </summary>
663
686
/// <param name="disposing"><see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
/// <exception cref="System.Exception">An instance of the underlying offscreen browser has already been created, this method can only be called once.</exception>
743
+
/// <exception cref="System.Exception">An instance of the underlying browser has already been created, this method can only be called once.</exception>
/// <exception cref="System.Exception">An instance of the underlying offscreen browser has already been created, this method can only be called once.</exception>
794
+
/// <exception cref="System.Exception">An instance of the underlying browser has already been created, this method can only be called once.</exception>
772
795
/// <returns>
773
796
/// A <see cref="Task{IBrowser}"/> that represents the creation of the underlying CEF browser (<see cref="IBrowser"/> instance.
774
797
/// When the task completes then the CEF Browser will have been created and you can start performing basic tasks.
@@ -833,7 +856,6 @@ public IJavascriptObjectRepository JavascriptObjectRepository
0 commit comments