how to access data in json format using asp.net c#

JavaScript
string json;
using(var reader = new StreamReader(Request.InputStream)){
        json = reader.ReadToEnd();
    }
var person = Json.Decode(json);
Source

Also in JavaScript: