Microsoft.VisualStudio.R.Package.Browsers.WebBrowserServices.NavigateOnIdle C# (CSharp) Method

NavigateOnIdle() private method

private NavigateOnIdle ( WebBrowserRole role, string url ) : void
role WebBrowserRole
url string
return void
        private void NavigateOnIdle(WebBrowserRole role, string url) {
            if (!string.IsNullOrEmpty(url)) {
                IdleTimeAction.Create(() => {
                    OpenVsBrowser(role, url);
                }, 100, typeof(WebBrowserServices), VsAppShell.Current);
            }
        }