asp.net-web-api – 在WebApi2帮助页面中启用文档

前端之家收集整理的这篇文章主要介绍了asp.net-web-api – 在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"
            }
        };

当我尝试浏览帮助页面时,为什么没有信息出现.我被告知没有可用的文件.

是否有一个神奇的开关可以打开这些数据的自动填充?

解决方法

如果你提到显示xml评论,那么你可以在这里找到我的答案:

ASP.NET Web API Help Page documentation using Xml comments on controllers

请务必在Areas / HelpPage / App_Start / HelpPageConfig.cs中取消注释此代码

// Uncomment the following to use the documentation from XML documentation file.
config.SetDocumentationProvider(new XmlDocumentationProvider(HttpContext.Current.Server.MapPath("~/App_Data/XmlDocument.xml")));

还要确保xml文件位于App_Data而不是bin中,它默认位于项目属性

原文链接:https://www.f2er.com/aspnet/248985.html

猜你在找的asp.Net相关文章