Parse JSON array in JSON.NET

前端 未结 3 826
梦如初夏
梦如初夏 2021-01-24 03:51

I have JSON object in REST API response:

{
    Result:
    [
        {
            \"id\": 1,
            \"id_endpoint\": 1,
            \"name\": \"Endpoint 1\         


        
3条回答
  •  孤独总比滥情好
    2021-01-24 03:55

    You need attributes help Newtonsoft.Json mapping the source to your class.

    public class DeviceInfo
    {
        [JsonProperty("id")]
        public int DeviceID { get; set; }
        [JsonProperty("id_endpoint")]
        public int EndpointID { get; set; }
        [JsonProperty("name")]
        public string DeviceName { get; set; }
        [JsonProperty("minthreshold")]
        public double MinThreshold { get; set; }
        [JsonProperty("maxthreshold")]
        public double MaxThreshold { get; set; }
        [JsonProperty("value")]
        public double CurrentValue { get; set; }
        [JsonProperty("time")]
        public DateTime ValueTime { get; set; }
        [JsonProperty("address")]
        public string EndpointAddress { get; set; }
        [JsonProperty("id_user")]
        public int IDUser { get; set; }
    }
    

    And an outer class which your json was wrapped.

    public class RootObject
    {
        public List Result { get; set; }
        public int StatusCode { get; set; }
    }
    

    Finally, you can use JsonConvert to Deserialize your json.

    var result = JsonConvert.DeserializeObject(json);
    

提交回复
热议问题