Should I use RouteParameter or UrlParameter for an Asp.NET web-api route?

烈酒焚心 提交于 2019-12-05 00:44:38

Use RouteParameter for Web Api routes (.MapHttpRoute) and UrlParameter for standard MVC controller routes (.MapRoute). As you know standard MVC and Web API are 2 completely distinct APIs in terms of assemblies and namespaces even if both are pretty similar. You could for example self host your Web API in a console application, so you won't even have a reference to the System.Web.Mvc assembly and you would of course use RouteParameter in this case.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!