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
/// Gets a value indicating whether this instance is disposed.
56
62
/// </summary>
@@ -170,9 +176,15 @@ public bool IsBrowserInitialized
170
176
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
171
177
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
172
178
/// <param name="automaticallyCreateBrowser">automatically create the underlying Browser</param>
179
+
/// <param name="onAfterBrowserCreated">
180
+
/// Use as an alternative to the <see cref="BrowserInitialized"/> event. If the underlying Chromium Embedded Framework (CEF) browser is created successfully,
181
+
/// this action is guranteed to be called after the browser created where as the <see cref="BrowserInitialized"/> event may be called before
182
+
/// you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
@@ -187,9 +199,15 @@ public ChromiumWebBrowser(HtmlString html, IBrowserSettings browserSettings = nu
187
199
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
188
200
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
189
201
/// <param name="automaticallyCreateBrowser">automatically create the underlying Browser</param>
202
+
/// <param name="onAfterBrowserCreated">
203
+
/// Use as an alternative to the <see cref="BrowserInitialized"/> event. If the underlying Chromium Embedded Framework (CEF) browser is created successfully,
204
+
/// this action is guranteed to be called after the browser created where as the <see cref="BrowserInitialized"/> event may be called before
205
+
/// you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
0 commit comments