使用RestSharp读取反序列化的数据

时间:2015-10-04 01:46:21

标签: c# json deserialization restsharp

我使用RestSharp反序列化Json文件: 我创建了课程

public class ListaUsuario
{
    public List<Usuario>usuarios { get; set; }
}

public class Usuario
{
    public string _id { get; set; }
    public long username { get; set; }
    public string name { get; set; }
    public int __v { get; set; }
    public string inf_huella { get; set; }
    public string inf_qr { get; set; }
}

我正在使用代码:

var request1 = new RestSharp.RestRequest("api/users?token=" + JSONObj["token"], RestSharp.Method.GET);
request1.OnBeforeDeserialization = resp => { resp.ContentType = "application/json"; };
request1.RequestFormat = DataFormat.Json;
var response2 = client.Execute(request1);
var  Lista = deserial1.Deserialize<List<Usuario>>(response2)

反序列化数据。但我想知道。我如何访问“Lista”并阅读信息。

0 个答案:

没有答案