gpt4 book ai didi

c# - 浏览器检测

转载 作者:行者123 更新时间:2023-11-30 22:45:08 29 4
gpt4 key购买 nike

如何检测我的 silverlight 应用程序中的浏览器类型?

例如我想知道我的 silverlight 应用程序是否在 IE 或 Firefox 或 GoogleChrome 上运行...

我正在使用 silverlight 4我的编程语言是c#

最佳答案

使用 HtmlPage.BrowserInformation 属性。

代码示例(给定一个名为“txtOut”的 TextBlock):-

    txtOut.Text = String.Format("Name: {0}\nVersion: {1}\nProduct Name: {2}\nProduct Version: {3}\nUser Agent: {4}\nPlatform: {5}",
HtmlPage.BrowserInformation.Name,
HtmlPage.BrowserInformation.BrowserVersion,
HtmlPage.BrowserInformation.ProductName,
HtmlPage.BrowserInformation.ProductVersion,
HtmlPage.BrowserInformation.UserAgent,
HtmlPage.BrowserInformation.Platform);

我有 IE 7 和 Firefox 3.6.6,看来 ProductName 和可能的 ProductVersion 是您确定浏览器的最佳选择。

关于c# - 浏览器检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3201497/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com