How to detect user agent in WCF web service

。_饼干妹妹 提交于 2019-11-30 20:39:19

You can read user agent from the HttpContext.Current.Request object if you enable ASP.NET compatibility in web.config:

There is another way to get the user agent without enabling ASP.NET compatibility in web.config:

string userAgent = WebOperationContext.Current.IncomingRequest.Headers["User-Agent"];

You can use also:

WebOperationContext.Current.IncomingRequest.UserAgent

What a totally unhelpful response!

This is not a trivial task. Yes it is obviously possible to get te user-agent string but how does one actually do it? I spent 2 hours checking google and so on but found the answer buried in MSDN documentation. In Visual Studio, from within a WebMethod try

this.Context.Request.UserAgent

That should do it!

User-Agent is a standard HTTP header. It'll be available to your web service just like it's available to anything CGI-like.

Did you even bother searching for this before posting your question? There must be millions of hits for it on Google.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!