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.
45
51
/// </summary>
@@ -159,9 +165,15 @@ public bool IsBrowserInitialized
159
165
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
160
166
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
161
167
/// <param name="automaticallyCreateBrowser">automatically create the underlying Browser</param>
168
+
/// <param name="onAfterBrowserCreated">
169
+
/// Use as an alternative to the <see cref="BrowserInitialized"/> event. If the underlying Chromium Embedded Framework (CEF) browser is created successfully,
170
+
/// this action is guranteed to be called after the browser created where as the <see cref="BrowserInitialized"/> event may be called before
171
+
/// you have a chance to subscribe to the event as the CEF Browser is created async. (Issue https://github.com/cefsharp/CefSharp/issues/3552).
@@ -176,9 +188,15 @@ public ChromiumWebBrowser(HtmlString html, IBrowserSettings browserSettings = nu
176
188
/// <param name="browserSettings">The browser settings to use. If null, the default settings are used.</param>
177
189
/// <param name="requestContext">See <see cref="RequestContext" /> for more details. Defaults to null</param>
178
190
/// <param name="automaticallyCreateBrowser">automatically create the underlying Browser</param>
191
+
/// <param name="onAfterBrowserCreated">
192
+
/// Use as an alternative to the <see cref="BrowserInitialized"/> event. If the underlying Chromium Embedded Framework (CEF) browser is created successfully,
193
+
/// this action is guranteed to be called after the browser created where as the <see cref="BrowserInitialized"/> event may be called before
194
+
/// 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