Answers for "asp.net get data in json"

C#
0

how get data from json in c#

public class JSONResponse
{
    public string status { get; set; }
    public List<Article> articles { get; set; }
}


JSONResponse response = JsonConvert.DeserializeObject<JSONResponse>(myJSON);
Posted by: Guest on April-11-2020
0

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

string json;
using(var reader = new StreamReader(Request.InputStream)){
        json = reader.ReadToEnd();
    }
var person = Json.Decode(json);
Posted by: Guest on September-23-2020

C# Answers by Framework

Browse Popular Code Answers by Language