Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否可以从 JsonMediaTypeFormatter 或 MediaTypeFormatter 中的请求中获取当前的 HTTP 动词?我构建了一个格式化程序,用于清理 JSON PUT 和 POST 请求中的输入字符串,但是我似乎无法访问 ReadFromStreamAsync 事件中的 http 上下文。我讨厌必须解析 GET 请求中的所有对象,因为这会降低性能。
我在 .net 4.5 中使用 Json.Net 实现。
掌心。HttpContext.Current.Request.HttpMethod解决了我的问题。
HttpContext.Current.Request.HttpMethod