HttpContext中的发布数据在哪里

时间:2011-04-01 12:10:40

标签: asp.net-mvc-2

我将Json数据发布到Restful Api。

服务器ASP.Net MVC应用程序使用JsonValueProviderFactory自动将数据绑定到模型对象

[HttpPut]
[ActionName("Student")]
public ActionResult PutStudent(Student s)
{
    return Content("");
}

只有部分json数据绑定到Student。其他人不是。在MVC应用程序中,如何查看原始发布数据?我无法在HttpContext中找到它。

请帮忙。

2 个答案:

答案 0 :(得分:3)

尝试在HttpContext.Request.InputStream对象中读取流。

答案 1 :(得分:0)

您可以使用Fiddler检查原始HTTP流量。