(To clarify, I have read other questions and their answers and tried all solutions, but none of them solved the issue)
I\'m debugging locally a code that I\'ll deplo
For what it's worth, I got sick of trying to get it to serialize correctly and did it myself.
My data is a javascript array of strings which posts like "value=thing1,thing2,thing3" and I was able to serialize it using the following:
$('
Then on the server side:
[HttpPost]
[Route("")]
public HttpResponseMessage Post()
{
var values = HttpContext.Current.Server.UrlDecode(Request.Content.ReadAsStringAsync().Result).Replace("val=","").Split(',');
...
}