0

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.

Sartorial
  • 173
  • 1
  • 8

1 Answers1

1

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...

Kiran
  • 56,921
  • 15
  • 176
  • 161
  • Will I be also able to match the view/UI generated and how the HelpPage looks? – Sartorial Dec 18 '13 at 19:10
  • yes, you would be able to...the interface that i mentioned only provides 'text' and so there would be no UI changes.. – Kiran Dec 18 '13 at 19:11