如何在 MVC webApi 控制器操作中读取 PUT 请求的内容。
[HttpPut]
public HttpResponseMessage Put(int accountId, Contact contact)
{
var httpContent = Request.Content;
var asyncContent = httpContent.ReadAsStringAsync().Result;
...
我在这里得到空字符串:(
我需要做的是:找出在初始请求中修改/发送了“哪些属性”(这意味着如果Contact
对象有 10 个属性,并且我只想更新其中的 2 个,我发送和对象只有两个属性,像这样的东西:
{
"FirstName": null,
"LastName": null,
"id": 21
}
预期的最终结果是
List<string> modified_properties = {"FirstName", "LastName"}