I am using webapi controller.I have to pass an JSON object from Java applet to web api controller. How to write a web api controller method to accept the JSON object
public test GetPo(int id)
{
}
|
I am using webapi controller.I have to pass an JSON object from Java applet to web api controller. How to write a web api controller method to accept the JSON object
|
||||
|
|
|
ASP.NET Web API uses JSON format as default format:
what you just do is to defined your model object which map with json:
And your POST method:
|
|||||
|