Michael Kniskern
Michael Kniskern

Reputation: 25260

Detecting which version of IE is installed on your OS in C#?

I am currenting manintaining a windows service that programmatcially generates a HttpWebRequest and HttpWebResponse objects for retrieving the response message of the request.

The UserAgent property of the HttpWebRequest was hard coded to use IE 6 as the browser agent. Is the a way to programmatcially detect which version of IE is installed on the server hosting the service?

It is currently hosted on a Windows Server 2003 machine and might be installed on a Windows Server 2008 machine.

Upvotes: 4

Views: 3257

Answers (2)

Priyank Bolia
Priyank Bolia

Reputation: 14433

you can also extract it from the WebBrowser control itself, if you have created one:

WebBrowser  browser = new WebBrowser();
Version ver = browser.Version;

Warning: this must be called from STA thread, otherwise it throws an exception. This can be encountered in MSTest cleanup code, which is MTA, not STA.

Upvotes: 2

Matt Sherman
Matt Sherman

Reputation: 8358

It looks like the user agent can be set: http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.useragent.aspx

I prefer the WebClient class these days, it's a wrapper for HttpWebRequest and allows you to do some things with less code: http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx

Upvotes: 0

Related Questions