获取南希的操作系统/平台
Nancyfx 中有类似的“平台”吗?
在 asp.net 中我可以执行以下操作: 请求.浏览器.平台
Is there an equivalent of the 'Platform' in Nancyfx?
In as asp.net I can do the following:
Request.Browser.Platform
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前还没有任何开箱即用的东西,但您可以访问标头,以便您可以自己解析它。
您应该解析可以从 Request.Headers["User-Agent"] 读取的 User-Agent HTTP 标头。您可以为其添加扩展方法,或者在 Request 上添加扩展方法em>
如果您创建了可重用的东西,那么请考虑将其贡献给框架,
谢谢!
Nothing out of the box right now, but you have access to the headers so you could parse it out of it yourself.
You should parse the User-Agent HTTP header that you can read from Request.Headers["User-Agent"] .. you could add an extension method for it, or on Request
If you create something reusable then please consider contirbuting it back to the framework
Thanks!