In asp.net, using this construct, how might I detect the new Microsoft \"Edge\" browser?
Dim wrkBrowser As String = \"\" Dim wrkBrowserType As String
HttpContext.Current.Request.UserAgent.DefaultIfEmpty().Contains("Edge")
DefaultIfEmpty() is an extension method I wrote that ensures empty string if the string is null.