ASP.NET Web-API Help-API Generator?

I am wondering if anyone can tell me which Web-Api help generator I should use.

I found this post , but it has been a year now and seems outdated.

I think ApiExplorer is now Web UI Help .

The message also talks about Swagger , which from some demos looks a lot nicer and it seems that you can make messages like messages and such but I'm not sure that it is still in development, like the year since the last update.

Does anyone have experience with any of them?

+4
source share
1 answer

Web Interface Help Web Page (Microsoft.AspNet.WebApi.HelpPage) is built on top of ApiExplorer.

  • The web API help page creates documentation pages and adds them to your project.
  • ApiExplorer provides you with a lower-level API that simply gives you API descriptions that you can use to create documentation.

See: http://www.asp.net/web-api/overview/creating-web-apis/creating-api-help-pages

I have not used Swagger. From readme, it is also built on top of ApiExplorer.

+1
source

Source: https://habr.com/ru/post/1478905/


All Articles