Recently I've start playing with new web API help page functionality, that was recently added to web API project template, and I have a notice that some "Additional information" column is always 'none'.
After some looking at markup I found that this info should arrive from attributes
<td class="parameter-annotations">
@if (parameter.Annotations.Count > 0)
{
foreach (var annotation in parameter.Annotations)
{
<p>@annotation.Documentation</p>
}
}
else
{
<p>None.</p>
}
</td>
But what kind of attribute I should use, to populate additional information?