How to Get Header Values

烂漫一生 提交于 2019-12-11 05:33:46

问题


How can I access header values from a web method in WCF Web API?


回答1:


You can try something like this:

(using System.Web;)

HttpUtility.UrlDecode(HttpContext.Current.Request.Headers["myValue"]);


来源:https://stackoverflow.com/questions/8238690/how-to-get-header-values

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