Is it possible to find out in what browser version a browser hosted application (XBAP) runs (eg. IE6, IE7 or IE8)? I want to find out the browser version from within the XBAP.
Detection of browser version in WPF
2k Views Asked by Rob At
3
There are 3 best solutions below
1

int BrowserVer;
using (var wb = new System.Windows.Forms.WebBrowser())
{
BrowserVer = wb.Version.Major;
}
2

I presume you mean Silverlight rather than WPF? (they're separate technologies, though similar).
Take a look at the System.Windows.Browser.BrowserInformation
Class
Specifically
System.Windows.Browser.BrowserInformation.BrowserVersion
From the MSDN page above:
using System;
using System.Windows.Controls; using System.Windows.Browser;
public class Example
{
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
outputBlock.Text +=
"\nSilverlight can provide browser information:\n"
+ "\nBrowser Name = " + HtmlPage.BrowserInformation.Name
+ "\nBrowser Version = " +
HtmlPage.BrowserInformation.BrowserVersion.ToString()
+ "\nUserAgent = " + HtmlPage.BrowserInformation.UserAgent
+ "\nPlatform = " + HtmlPage.BrowserInformation.Platform
+ "\nCookiesEnabled = " +
HtmlPage.BrowserInformation.CookiesEnabled.ToString() + "\n";
}
}
With some help from a Microsoft forum I was led into a direction that finally works. Below a proof of concept in C++.NET (.