If you choose for whatever reason not to use modelbinding in a HttpPost request, what other ways are there to access the QueryString (HttpGet) or Form parameters (HttpPost)?
Traditionally you could do:
Request.QueryString["Key"]
Request.Form["Key"]
Request["Key"]
I can't seem to find anything similiar in Web API.