How to pass List<ComplexType> as parameter in Json REST Service.
Hosting and Servers
1
Posts
1
Posters
1
Views
1
Watching
-
Hi, I have a REST Json method like this.
double[] GetResult(List tinput, string tdata);
And i am expecting a response from this method. But based on the result available in few articles in Internet, it seems like ComplexType object can only be passed in POST method not in GET method. But i want an array result from the above method as response. Could any one help me how the UriTemplate an be assigned to the above method.? And how to pass JsonInput Parameter to this REST method from c# client application and how to parse the result back to double[] type at client side.?