I have a JSON that returns
{
    "access_token": "",
    //....
}
I would like to map it to AccessToken rather than access_token.
Using JSON.NET, one can write
[JsonProperty("access_token")]
public string AccessToken{ get; set; }
Is there an equivalent in ASP.NET framework? I do not want JSON.NET dependency here.
 
    