我有一個簡單的webapi2項目。在WebApi2幫助頁面中啓用文檔
我似乎可以發現自己指的是舊的webapi1
從我的控制器,如果我有
/// <summary>
/// Gets a list of not very interesting information
/// </summary>
/// <returns>The list</returns>
[ResponseType(typeof(ExampleModel))]
public IHttpActionResult Get()
{
var data = new List<ExampleModel>()
{
new ExampleModel()
{
Date = DateTime.Now,
Name = "Tom"
},
new ExampleModel()
{
Date = DateTime.Now.AddDays(-20),
Name = "Bob"
}
};
的唯一信息就是爲什麼出現,當我嘗試瀏覽到幫助頁面的信息。我被告知沒有可用的文件。
是否有一個魔術開關會打開這個數據的自動填充?
可能有[ASP.NET Web API幫助頁面文檔使用控制器上的Xml註釋](http://stackoverflow.com/questions/14843243/asp-net-web-api-help-page-documentation-using-xml-comments-on-controllers) –