Add overload and update version

This commit is contained in:
2014-09-16 09:42:05 -04:00
parent 783152f7dc
commit 5454196518
2 changed files with 6 additions and 1 deletions

View File

@@ -65,6 +65,11 @@ namespace Common.Internet
return true;
}
public static Dictionary<string, Browser> DetectInstalledBrowsers()
{
return DetectInstalledBrowsers(false, false);
}
public static Dictionary<string, Browser> DetectInstalledBrowsers(bool loadImages, bool includeUseSystemDefault)
{
var browsers = new Dictionary<string, Browser>();