Asp.Net WebApi。 HttpPost是默认的?

时间:2014-11-09 18:25:39

标签: c# asp.net-web-api

也许我找不到手册。

我通过实验发现,如果某个方法不遵循webapi命名对象(Post~~Get~~)并且没有像{{[HttpPost]那样描述动词属性,则 POST 是默认接受动词1}}在webapi中。

是吗? 有什么描述吗?

1 个答案:

答案 0 :(得分:3)

那是对的。如果方法名称没有映射(通过属性或约定)到支持的HTTP谓词,则默认为POST。

请参阅那里的答案

Is there a default verb applied to a Web API ApiController method?