/// <summary> /// Creates the underlying CfxBrowser with the given /// CfxRequestContext and initial URL. /// This method should only be called if this ChromiumWebBrowser /// was instanciated with createImmediately == false. /// </summary> public void CreateBrowser(string initialUrl, CfxRequestContext requestContext) { this.initialUrl = initialUrl; CreateBrowser(requestContext); }
public void CreateBrowser(CfxRequestContext requestContext) { ((IChromiumWebBrowser)browser).CreateBrowser(requestContext); }