RestSharp Deserialization with JSON Array

青春壹個敷衍的年華 提交于 2019-11-30 14:38:18

问题


I have a JSON response that I'm trying to deserialize with RestSharp, and it looks like this:

{"devices":[{"device":{"id":7,"deviceid":"abc123","name":"Name"}},
            {"device":{"id":1,"deviceid":"def456","name":"Name"}}],
 "total":2,
 "start":0,
 "count":2}

Based off of some suggestions I've found, I've tried to setup my POCO like this:

public class DevicesList
{
    public List<DeviceContainer> Devices;
}

public class DeviceContainer
{
    public Device Device;
}

public class Device
{
    public int Id { get; set; }
    public string DeviceId { get; set; }
    public string Name { get; set; }
}

And then my execution looks like this:

// execute the request
var response = client.Execute<DevicesList>(request);

However, response.Data is NULL, and I've tried other variations with no luck.

So, what class structure and mapping should be used for this situation? I've also tried this without the extra DeviceContainer class.

Thanks for the help.


回答1:


RestSharp only operates on properties, it does not deserialize to fields, so make sure to convert your Devices and Device fields to properties.

Also, double check the Content-Type of the response, if the responses is something non-default, RestSharp may not uses the JsonDeserializer at all. See my answer on RestSharp client returns all properties as null when deserializing JSON response




回答2:


I had a slightly different issue when my deserialization POCO contained an array..

Changing it from Devices[] to List<Devices> resolved the issue and it deserialized correctly.




回答3:


Something that I ran into is, it does not work if your using interfaces like: IEnumerable or IList, it has to be a concrete type.

This will not work, where as it does for some other json serializers like json.net.

public class DevicesList
{
    public IEnumerable<DeviceContainer> Devices { get; set; }
}

public class DeviceContainer
{
   ...
}

it would have to be something like this:

public class DevicesList
{
    public List<DeviceContainer> Devices { get; set; }
}

public class DeviceContainer
{
   ...
}



回答4:


RestShartp doesn't support DataAnnotation/DataMember, rename your properties with no maj:

  • Devices -> devices
  • Device -> device

AND don't forget the {get; set;} ;).




回答5:


My problem was entirely different, I naively thought JsonDeserializer supports JsonProperty attribute, but thats not true. So when trying to deserialize into

public class AvailableUserDatasApi
{
    [JsonProperty("available-user-data")]
    public List<AvailableUserDataApi> AvailableUserDatas { get; set; }
}

it failed.. But changing AvailableUserDatas to AvailableUserData was enough for things to start working.



来源:https://stackoverflow.com/questions/16156738/restsharp-deserialization-with-json-array

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!