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
Copy file name to clipboardexpand all lines: CefSharp.OffScreen/ChromiumWebBrowser.cs
+6
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,9 @@ public bool IsBrowserInitialized
151
151
/// <summary>
152
152
/// Create a new OffScreen Chromium Browser. If you use <see cref="CefSharp.JavascriptBinding.JavascriptBindingSettings.LegacyBindingEnabled"/> = true then you must
153
153
/// set <paramref name="automaticallyCreateBrowser"/> to false and call <see cref="CreateBrowser"/> after the objects are registered.
154
+
/// The underlying Chromium Embedded Framework(CEF) Browser is created asynchronouly, to subscribe to the <see cref="BrowserInitialized"/> event it is recommended
155
+
/// that you set <paramref name="automaticallyCreateBrowser"/> to false, subscribe to the event and then call <see cref="CreateBrowser(IWindowInfo, IBrowserSettings)"/>
156
+
/// to ensure you are subscribe to the event before it's fired (Issue https://github.com/cefsharp/CefSharp/issues/3552).
154
157
/// </summary>
155
158
/// <param name="html">html string to be initially loaded in the browser.</param>
156
159
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
@@ -165,6 +168,9 @@ public ChromiumWebBrowser(HtmlString html, IBrowserSettings browserSettings = nu
165
168
/// <summary>
166
169
/// Create a new OffScreen Chromium Browser. If you use <see cref="CefSharp.JavascriptBinding.JavascriptBindingSettings.LegacyBindingEnabled"/> = true then you must
167
170
/// set <paramref name="automaticallyCreateBrowser"/> to false and call <see cref="CreateBrowser"/> after the objects are registered.
171
+
/// The underlying Chromium Embedded Framework(CEF) Browser is created asynchronouly, to subscribe to the <see cref="BrowserInitialized"/> event it is recommended
172
+
/// that you set <paramref name="automaticallyCreateBrowser"/> to false, subscribe to the event and then call <see cref="CreateBrowser(IWindowInfo, IBrowserSettings)"/>
173
+
/// to ensure you are subscribe to the event before it's fired (Issue https://github.com/cefsharp/CefSharp/issues/3552).
168
174
/// </summary>
169
175
/// <param name="address">Initial address (url) to load</param>
170
176
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
0 commit comments