Newtonsoft JSON deserializes using HttpWebResponse

I searched in all questions about deserialization with Newtonsfot Json Converter. But I could not find the problem in my code. Therefore, I am here, asking for help.

Error message from visual studio:

Without control - Newtonsoft.Json.JsonSerializationException HResult = -2146233088 Message = It is not possible to deserialize the current JSON array (for example, [1,2,3]) to the type "APIEffilogics.Usuari + Client" because the type requires JSON (for example, {" name ":" value "}) for deserialization. To fix this error, either change the JSON to a JSON object (for example, {"name": "value"}), or change the deserialized type to an array or a type that implements the collection interface (for example, ICollection, IList) as a List, which can be deserialize from a JSON array. JsonArrayAttribute can also be added to a type to make it deserialize from a JSON array.

My JSON answer is as follows:

[  {
  "id": 32,
  "consultancy_id": 1,
  "nif": "B61053922",
  "contactname": "",
  "email": "",
  "phone": "",
  "active": true,
  "description": "Keylab"   },   
{
  "id": 19,
  "consultancy_id": 1,
  "nif": "P0818300F",
  "contactname": "Pau Lloret",
  "email": "lloret@citcea.upc.edu",
  "phone": "",
  "active": true,
  "description": "Rubi"   } ]

And these are the classes:

namespace APIEffilogics
{
    public class Usuari
    {
        public string access_token;    //Encapsulat que conté la identificació de seguretat
        public string token_type;      //Tipus de token, "Bearer"
        public string response;        //Resposta de l'API

        public class Client : Usuari    //Estructura client
        {
            [JsonProperty("id")]
            public string cid { get; set; }
            [JsonProperty("consultancy_id")]
            public string consultancy_id { get; set; }
            [JsonProperty("contactname")]
            public string contactname { get; set; }
            [JsonProperty("email")]
            public string email { get; set; }
            [JsonProperty("description")]
            public string description { get; set; }
            [JsonProperty("nif")]
            public string nif { get; set; }
            [JsonProperty("phone")]
            public string phone { get; set; }
            [JsonProperty("active")]
            public string active { get; set; }
        }
        public class Building : Usuari  //Estructura edifici
        {
            public string descrip;
            public string bid;
        }
        public class Floor : Usuari     //Estructura planta
        {
            public string descrip;
            public string fid;
        }
        public class Room : Usuari      //Estructura habitació
        {
            public string descrip;
            public string rid;
        }
        public class Node : Usuari      //Estructura nodes
        {
            public string[] descrip;
            public string[] nid;
            public string[] model;
            public string[] type;
        }
    }
 //************************END PUBLIC CLASS Usuari***************************//
}

The code I'm using is:

public void Request(string url, string metode)
{
   try
   {
      //Enviem la petició a la URL especificada i configurem el tipus de connexió
      HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);

      myReq.KeepAlive = true;
      myReq.Headers.Set("Cache-Control", "no-store");
      myReq.Headers.Set("Pragma", "no-cache");
      myReq.Headers.Set("Authorization", usuari.token_type + " " + usuari.access_token);

      if (metode.Equals("GET") || metode.Equals("POST"))
      {
           myReq.Method = metode;  // Set the Method property of the request to POST or GET.
           if (body == true)
           {
               // add request body with chat search filters
              List<paramet> p = new List<paramet>();
              paramet p1 = new paramet();
              p1.value = "1";
              string jsonBody = JsonConvert.SerializeObject(p1);
              var requestBody = Encoding.UTF8.GetBytes(jsonBody);
              myReq.ContentLength = requestBody.Length;
              myReq.ContentType = "application/json";
              using (var stream = myReq.GetRequestStream())
              {
                  stream.Write(requestBody, 0, requestBody.Length);
              }
              body = false;
           }
      }
      else throw new Exception("Invalid Method Type");

      //Obtenim la resposta del servidor
      HttpWebResponse myResponse = (HttpWebResponse)myReq.GetResponse();
      Stream rebut = myResponse.GetResponseStream();
      StreamReader readStream = new StreamReader(rebut, Encoding.UTF8); // Pipes the stream to a higher level stream reader with the required encoding format. 
      string info = readStream.ReadToEnd();
      var jsondata = JsonConvert.DeserializeObject<Usuari.Client>(info);

       myResponse.Close();
       readStream.Close();*/
    }
    catch (WebException ex)
    {
       // same as normal response, get error response
       var errorResponse = (HttpWebResponse)ex.Response;
       string errorResponseJson;
       var statusCode = errorResponse.StatusCode;
       var errorIdFromHeader = errorResponse.GetResponseHeader("Error-Id");
       using (var responseStream = new StreamReader(errorResponse.GetResponseStream()))
       {
           errorResponseJson = responseStream.ReadToEnd();
       }
     }
}

, , JSON. - , , .

, , . JSON : {

    nodes: [
      {
        id: 5,
        global_id: 5,
        description: "Oven",
        room_id: 2,
        floor_id: 1,
        building_id: 1,
        client_id: 2,
        nodemodel_id: 2,
        nodetype_id: 1
      },
      {
        id: 39,
        global_id: 39,
        description: "Fridge",
        room_id: 2,
        floor_id: 1,
        building_id: 1,
        client_id: 2,
        nodemodel_id: 8,
        nodetype_id: 1
      }, ...
    ],
    limit: 10,
    offset: 0
}

:

public class Node : Usuari      //Estructura nodes
{            
   [JsonProperty("limit")]
   public int limit { get; set; }
   [JsonProperty("offset")]
   public int offset { get; set; }
   [JsonProperty("nodes")]
   public List<Node_sub> nodes_sub { get; set; }
}
public class Node_sub : Node
{
    [JsonProperty("id")]
    public string nid { get; set; }
    [JsonProperty("global_id")]
    public string gid { get; set; }
    [JsonProperty("description")]
    public string descrip { get; set; }
    [JsonProperty("room_id")]
    public string rid { get; set; }
    [JsonProperty("floor_id")]
    public string fid { get; set; }
    [JsonProperty("client_id")]
    public string cid { get; set; }
    [JsonProperty("building_id")]
    public string bid { get; set; }
    [JsonProperty("nodemodel_id")]
    public string model { get; set; }
    [JsonProperty("nodetype_id")]
    public string type { get; set; }
}

, , :

jsonnode = JsonConvert.DeserializeObject<List<Usuari.Node>>(info);

? List<Usuari.Node> - , JSON.

+4
1

Try

var jsondata = JsonConvert.DeserializeObject<List<Usuari.Client>>(info);

, :

, JSON JSON (, { "name": "value" }) , (, ICollection, IList) List, JSON

, .

HTTP- , , . List<Usari.Client>, , .

+3

All Articles