Reputation: 1408
I can't find any documentation on the syntax for a HttpWebRequest wrapped body.
Upvotes: 1
Views: 586
Reputation: 14402
If your method looks like this:
string Echo(string echo)
{
return echo;
}
Then the Wrapped request body looks like this in Json:
{"echo":"test"}
If you change the setting to "Bare" then it would look like this:
"test"
Upvotes: 0