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
OffScreen - ChromeRuntime doesn't work with LoadURL
- After switching to the Chrome bootstrap, the browser wouldn't load if you passed in an empty
string to the constructor, we can defer loading until after another LoadUrl call is made.
Resolves#4832
/// BrowserSettings used by createBrowserOnNextLoadCall
52
+
/// </summary>
53
+
privateIBrowserSettingsbrowserSettings;
54
+
44
55
/// <summary>
45
56
/// Action which is called immediately before the <see cref="BrowserInitialized"/> event after the
46
57
/// uderlying Chromium Embedded Framework (CEF) browser has been created.
@@ -191,7 +202,10 @@ public ChromiumWebBrowser(HtmlString html, IBrowserSettings browserSettings = nu
191
202
/// that you set <paramref name="automaticallyCreateBrowser"/> to false, subscribe to the event and then call <see cref="CreateBrowser(IWindowInfo, IBrowserSettings)"/>
192
203
/// to ensure you are subscribe to the event before it's fired (Issue https://github.com/cefsharp/CefSharp/issues/3552).
193
204
/// </summary>
194
-
/// <param name="address">Initial address (url) to load</param>
205
+
/// <param name="address">
206
+
/// Initial address (url) to load. If <see cref="string.Empty"/> then cretion of the browser
207
+
/// will be deferred until <see cref="LoadUrl(string)"/> is called with a non empty Url.
208
+
/// </param>
195
209
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
196
210
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
197
211
/// <param name="automaticallyCreateBrowser">automatically create the underlying Browser</param>
0 commit comments