The ASP.Net Web Api help pages appear to automatically determine if the parameter is in a Uri or Body request. How can I document parameter parameters that are QueryString parameters?
For example, I may have a RESTful Url, for example
[GET] api/Books?relatedToBookId=xx
Where "relatedToBookId" is an optional queryString parameter.
Usually parameters that are FromUri or FromBody are put in comments as
<param name="variableName">blah blah</param>
asp.net-mvc asp.net-web-api asp.net-web-api-helppages
Justin
source share