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

Commented Issue: [HelpPage]Xml documentation on request body parameter missing from help page [1460]

$
0
0
For the following action, HelpPage UI is missing the xml comment information about the parameter 'person'.

The xml comment "Updated person information" should show up.

```
/// <summary>
/// Updates an existing person
/// </summary>
/// <param name="id">Id of th epreson</param>
/// <param name="person">Updated person information</param>
/// <returns>No content is returned</returns>
[ResponseType(typeof(void))]
public async Task<IHttpActionResult> PutPerson(int id, Person person)
```

Person entity:
```
/// <summary>
/// Represents a person class
/// </summary>
public class Person
{
/// <summary>
/// Id of th eperson
/// </summary>
public int Id { get; set; }

/// <summary>
/// Name of the person
/// </summary>
public string Name { get; set; }
}
```

__Attached__ a snapshot.
Comments: Fixed by change set [0176e15c0fac](https://aspnetwebstack.codeplex.com/SourceControl/changeset/0176e15c0fac3bea1b67ca1d155b0d4f17695e67).

Viewing all articles
Browse latest Browse all 7215

Trending Articles



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