Web API2帮助页面不起作用

时间:2017-07-25 09:10:43

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

我有一个现有的ASP.NET Web API2项目。我想添加帮助页面。但是我的控制器方法只显示在我的帮助页面上,即使我看到没有应用css的页面也是如此。我可以在我的bin文件夹中看到文档xml file

enter image description here

1 个答案:

答案 0 :(得分:0)

添加到项目

<强> HomeController.cs

public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewBag.Title = "Home Page";

            return View();
        }
    }