The ASP.Net Web Api Help Pages seem to automatically determine if a parameter is in the Request Uri or Body. How can I document option parameters that are QueryString parameters?
For example I have may have a RESTful Url such as
[GET] api/Books?relatedToBookId=xx
Where "relatedToBookId" is an optional queryString parameter.
Normally the parameters that are FromUri or FromBody are put into the comments as
<param name="variableName">blah blah</param>