ASP.NET Web API Help Page documentation with Doxygen. Is it possible?

1k views Asked by At

enter image description here

Is it possible to generate this type of API documentation with Doxygen. If so how?

I do have all my controllers XML commented.

1

There are 1 answers

2
Kiran On

HelpPage, by default, uses XmlDocumentationProvider(which depends on the default .net generated documentation) which implements System.Web.Http.Description.IDocumentationProvider...You can create a custom IDocumentationProvider and where you can read the documentation generated by Doxygen...After creating this custom provider, you can replace the default one in HelpPageConfig.cs...