I am looking for sending JSON object to the server via GET. Chris\'s answer on Post an Array of Objects via JSON to ASP.Net MVC3 works for the http POST but not for GET.
Try changing method to public ActionResult Screenreport(HttpRequestMessage request)
Then use below code to get JSON object.
data = request.RequestUri.Query; data = HttpUtility.ParseQueryString(data).Get("request");