Questions tagged [asp.net-web-api-helppages]

The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site.

"The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site… Everything generated by the help page is fully customizable using ASP.NET MVC and Razor. ASP.NET Web API Help Page is a great addition to any ASP.NET Web API project."

NuGet summary

For more information on how to use the ASP.NET Web API Help Page, you can start with this tutorial from the Microsoft Web API site; more advanced usage scenarios are outlined at Yao Huang's blog on MSDN.

109 questions
0
votes
1 answer

ASP.NET Web Api 2 Documentation splitting?

In a big system, where there are an api for lots of resources, I want split documentation in some configured manner. Like if they were different apis. So in main page of web api I have a list of configured 'resources'. Let's say: Managing contacts…
Bart Calixto
  • 19,210
  • 11
  • 78
  • 114
0
votes
2 answers

C# Webapi HelpPage Request Model Customization

I have created my WebAPI controllers' documentation using HelpPage. I have following model in my web api. public class InfoModel { [Required] public int id { get; set; } [Required] public string title { get; set; } public…
theGeekster
  • 6,081
  • 12
  • 35
  • 47
-1
votes
2 answers

How to direct to help page on run time of Web API 2

I added a help page to my Web API 2 project following these instructions: msdn app help page How on run time do I enable to always display the help page without having to type help in the URL. When I set Index.cshtml as start page I get a 404 error.…
-1
votes
1 answer

How to modify the "Global.asax" of a Web API just to impact the Help Page? (MVC)

* Scenario: * I have got a web api service application made in C# Visual Studio 2012. This web service has an "Areas" folder with the default project of Web Api Help Page. * Problem: * By requeriment, I must to implement a manual input to…
1 2 3 4 5 6 7
8