Accepting JSON in Requests
Introduction
Typed JSON objects can be used as a representation of the HTTP (or other REST protocol) request body payload. To accept a JSON object in a PUT message, simply declare a parameter with the type Json
.
Example
PersonMsg.json
Program.cs
The parameter is not associated with the URI template, so the content of the body will be used to fill in the object.
Now you can call the above handler with a HTTP request, for example using XMLHttpRequest
in a web browser or manually using cURL:
Last updated