如何在XNA应用程序中获取useragent?

发布于 2024-12-16 23:16:07 字数 105 浏览 0 评论 0原文

我需要在我的 XNA 应用程序中获取 useragent 以发送到服务器。我找到了一个使用JavaScript获取useragent的例子,但是代码没有出来,因为它只适用于silverlight。

I need to get useragent in my XNA-application to send to the server. I found an example of using JavaScript to get the useragent, but the code did not come, because it works only for silverlight.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

待"谢繁草 2024-12-23 23:16:07

以下是该 URL 上提供的解决方案。我觉得它可能适合你。看看:-

获取基于 XNA 的用户代理字符串应用程序

解决方案:

对于感兴趣的人:我联系了负责我们服务器的人,他将根据我的应用程序发送到服务器的信息创建一个用户代理字符串。这是信息:

OperatingSystem = System.Environment.OSVersion.ToString();

DeviceManufacturer = (string)Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceManufacturer");
DeviceName = (string)Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceName");

Below is the solution provide on this URL. I feel it may suits you. Check it out:-

Getting the user agent string in an XNA based application

Solution:

For who is interested: I contacted the guy who's responsible for our server and he will make a user agent string, based on info that my application sends to the server. This is the info:

OperatingSystem = System.Environment.OSVersion.ToString();

DeviceManufacturer = (string)Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceManufacturer");
DeviceName = (string)Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceName");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文