无法调试传入的Webrequest的Content-Type请求标头

时间:2019-06-04 08:38:40

标签: json api model-view-controller http-headers content-type

我正在用Postman测试我的应用程序,并且在测试时我添加了多个标头:

enter image description here

我在API中收到这些标头,并且只能调试自定义标头“ loggedInUser”和“ AuthorisationKey”。我正在使用以下代码进行此操作:

loggedInUser = int.Parse(this.ActionContext.Request.Headers.GetValues("loggedInUser").First());
providedAuthKey = this.ActionContext.Request.Headers.GetValues("AuthorisationKey").First();

但是我在ActionContext中找不到标题“ Content-Type”,但是我尝试了以下操作:

var requestedDatatype = this.ActionContext.Request.Headers.GetValues("Content-Type").First();
var requestedDatatype = this.Request.Content.Headers.ContentType;

有人知道该怎么做吗?

谢谢!

1 个答案:

答案 0 :(得分:0)