Skip to content

Instantly share code, notes, and snippets.

@ajtowf
Created May 2, 2013 11:52
Show Gist options
  • Save ajtowf/5501725 to your computer and use it in GitHub Desktop.
Save ajtowf/5501725 to your computer and use it in GitHub Desktop.
WebApi FromBody/ParseQuery
[HttpGet]
public HttpResponseMessage Foo([FromBody]MyModel bar)
{
var queryParams = HttpUtility.ParseQueryString(Request.RequestUri.Query);
string q = queryParams["q"];
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment