asp.net帮助页面没有显示正确的路线

时间:2016-07-12 22:40:29

标签: asp.net asp.net-web-api asp.net-web-api-helppages

我使用属性路由来路由控制器中的动作,但是asp.net生成错误的帮助页面

[HttpGet]
[Route("getAll")]
[AllowAnonymous]
public IHttpActionResult GetCategories(){...}

但结果是enter image description here

1 个答案:

答案 0 :(得分:0)

设置配置以使用属性路由。

public static class WebApiConfig
{
    public static void Configure(HttpConfiguration configuration)
    {
        //the following config sets up your routing mechanism to use attributes
        configuration.MapHttpAttributeRoutes();
    }
}