Quantcast
Channel: ASPNETWebStack Issue Tracker Rss Feed
Viewing all articles
Browse latest Browse all 7215

Created Issue: HelpPage not showing documentation for actions which have parameters as Nested types [905]

$
0
0
From here:
[http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri](http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri)

Repro:
Copy the following class and enable Xml documentation on the project settings and also in HelPage's HelpPageConfig.cs
```
using System.Web.Http;

namespace MvcApplication31.Controllers
{
public class UsersController : ApiController
{
public class Preferences
{
public string Theme { get; set; }

public string Size { get; set; }
}

/// <summary>
/// Saves users' preferences
/// </summary>
/// <param name="pref">Preferences of the user</param>
public string SavePreferences(Preferences pref)
{
return "value";
}
}
}
```

Actual: "No Documentation Available"
Expected: comments specified for the action.


Viewing all articles
Browse latest Browse all 7215

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>