Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - Cannot deserialize the current JSON array

Tags:

json

c#

json.net

I have this code:

string json2 = vc.Request(model.uri + "?fields=uri,transcode.status", "GET");
var deserial = JsonConvert.DeserializeObject<Dictionary<string, object>>(json2);
var transcode = deserial["transcode"];
var serial = JsonConvert.SerializeObject(transcode);
var deserial2 = JsonConvert.DeserializeObject<Dictionary<string, object>>(serial);
var upstatus = deserial2["status"].ToString();

The json I get from the server is:

{
    "uri": "/videos/262240241",
    "transcode": {
        "status": "in_progress"
    }
}

When running it on VS2017, it works.

But on VS2010 I get the following error:

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'System.Collections.Generic.Dictionary`2[System.String,System.Object]' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly. To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. Path '', line 1, position 1.

I am using Newtonsoft.Json.

Any idea?

like image 435
Aa Yy Avatar asked Mar 06 '23 13:03

Aa Yy


2 Answers

Your received json data is not a Dictionary<string, object>, it is a object

public class Transcode
{
    public string status { get; set; }
}

public class VModel
{
    public string uri { get; set; }
    public Transcode transcode { get; set; }
}

You can use this object:

var deserial = JsonConvert.DeserializeObject<VModel>(json2);

instead of:

var deserial = JsonConvert.DeserializeObject<Dictionary<string, object>>(json2);
like image 126
D-Shih Avatar answered Mar 10 '23 12:03

D-Shih


The best answer was deleted for some reason, so i'll post it:

var deserial = JsonConvert.DeserializeObject<dynamic>(json2);
string upstatus = string.Empty;
upstatus = deserial.transcode.status.ToString();
like image 44
Aa Yy Avatar answered Mar 10 '23 11:03

Aa Yy