Tagged Questions
Json.NET is a popular high-performance JSON framework for .NET
55
votes
7answers
61k views
Parse JSON in C#
I'm trying to parse some JSON data from the Google AJAX Search API. I have this URL and I'd like to break it down so that the results are displayed. I've currently written this code, but I'm pretty ...
51
votes
2answers
49k views
Parsing JSON using Json.net
I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused as to how to accomplish what I need. Here is the format for the JSON I need to ...
38
votes
7answers
24k views
How can I deserialize JSON to a simple Dictionary<string,string> in ASP.NET?
I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example:
{ "key1": "value1", "key2": "value2"}
I AM NOT TRYING TO DESERIALIZE INTO STRONGLY-TYPED .NET OBJECTS
I simply ...
20
votes
12answers
3k views
What is the most flexible serialization for .NET objects, yet simple to implement?
I would like to serialize and deserialize objects without having to worry about the entire class graph.
Flexibility is key. I would like to be able to serialize any object passed to me without ...
17
votes
1answer
186 views
Serializing null in JSON.NET
When serializing arbitrary data via JSON.NET, any property that is null is written to the JSON as
"propertyName" : null
This is correct, of course.
However I have a requirement to ...
14
votes
6answers
23k views
JSON.Net: convert json string to xml or xml to json string?
I started to use JSON.Net to convert a string in json format to object or vice visa. I am not sure in the JSON.Net framework, is it possible to convert a string in json to xml format and vice visa?
13
votes
5answers
3k views
JSON.NET and nHibernate Lazy Loading of Collections
Is anybody using JSON.NET with nHibernate? I notice that I'm getting errors when i try to load a class with child collections.
Thanks
Graham
12
votes
3answers
1k views
Asp.net MVC json or Json.net?
I am now using asp.net mvc and wondering what is a better choice using the built in Json or Json.Net I am not sure if one has an advantage over another.
Also if I do choose to go down the route of ...
12
votes
7answers
6k views
How to pass a JSON date value via ASP.NET MVC?
ASP.NET Json() formats and returns a date as
{"d":"\/Date(1240718400000)\/"}
which has to be dealt w/ on the client side which is problematic. What are your suggestions for approaches to sending ...
12
votes
3answers
2k views
Which is faster asp.net mvc json or json.net?
I was wondering if anyone has run any benchmark tests on the JSON() function in Asp.net MVC and how it compares to JSON.NET? Also which one outputs the best json strings?
11
votes
3answers
1k views
Deserialize json object into dynamic object using Json.net
Is it possible to return a dynamic object from a json deserialization using json.net? I would like to do something like this:
dynamic jsonResponse = JsonConvert.Deserialize(json);
...
11
votes
2answers
13k views
How can I return json from my WCF rest service (.NET 4), using Json.Net, without it being a string, wrapped in quotes?
UPDATE 10/19/2010
I know I asked this question a while ago, but the workarounds shown in these answers are hardly satisfactory, and this is still a common problem for many. WCF just isn't flexible. ...
9
votes
2answers
225 views
How to deserialize using JSON.Net to an anonymous type?
Just trying to create an anonymous type from JSON without knowing anything about the parameters ahead of time, and fully interpreting them (possibly with hints). i.e. that value "looks" like an int, ...
9
votes
2answers
890 views
Deserializing JSON when sometimes array and sometimes object
I'm having a bit of trouble deserializing data returned from Facebook using the JSON.NET libraries.
The JSON returned from just a simple wall post looks like:
{
"attachment":{"description":""},
...
9
votes
3answers
456 views
Good .NET libraries for working with JSON data?
I am currently trying out Json.NET, and it seems to work well.
Any other good JSON libraries for .NET?
8
votes
2answers
159 views
JSON.NET - Conditional Type Deserialization
I'm consuming some ARCGis web services, and they have some unfortunate JSON design. for example, they might give something like this:
{
geometryType: "esriGeometryPolygon"
geometry: {
-rings: [
...
8
votes
1answer
300 views
An exception in Json.NET: Token PropertyName in state “Start” would result in an invalid JavaScript object
I see the error in my prod server log; can u give me any hint about what kinds of situations would trigger the error? Thanks.
Token PropertyName in state Start would result in an invalid JavaScript ...
8
votes
3answers
6k views
Deserializing JSON data to C# using JSON.NET
I'm relatively new to working with C# and JSON data and am seeking guidance. I'm using C# 3.0, with .NET3.5SP1, and JSON.NET 3.5r6.
I have a defined C# class that I need to populate from a JSON ...
7
votes
2answers
185 views
Way to quickly check if string is XML or JSON in C#
I'm using C# in a console app and I need a quick way to check if a string being returned from another service is XML or JSON.
I know if it was just XML, I could check it against a schema, or if it ...
7
votes
3answers
484 views
Json.NET + VerificationException Operation could destabilize the runtime
I am getting the "Operation could destablize the runtime exception". I goggled quite a bit, looks like exception has to do with conflicting assemblies being loaded at runtime.
So, here are couple of ...
7
votes
2answers
3k views
How to convert c# generic list to json using json.net?
I am converting my datatable to c# generic list.
DataTable dt = mydata();
List<DataRow> list = dt.AsEnumerable().ToList();
Now how can i convert this list to json using json.net? Any ...
7
votes
1answer
1k views
Suggestions on how to create a custom GeoJson serializer using JSON.NET?
I will be attempting to create a C# library to serialize objects to GeoJSON using Json.NET ( for serialization ) and GeoAPI.NET ( for geometry definitions ).
I have thought about two different ...
7
votes
2answers
7k views
Parsing JSON DateTime from Newtonsoft's JSON Serializer
I've serialized an object using Newtonsoft's JSON serializer, and the DateTime has come through as:
/Date(1237588418563+0000)/
When I $.evalJSON() on that, it is an object but I can't find any ...
6
votes
4answers
755 views
Deserializing JSON array into strongly type .NEt object
I am using Newtonsoft's JSON Parser via Hammock.
When I can call the 3rd party api and get back a single class worth of data everything deserialises fine using this code
TheUser me = ...
6
votes
1answer
708 views
How to deserialize an JObject to .NET object
I happily use the Newtonsoft JSON library.
For example I would create a JObject from an .NET object, in this case a instance of Exception (might or might not be a subclass)
if (result is Exception)
...
6
votes
1answer
427 views
How Do I Make Json.NET the Default Json Serializer
If I have a web service (.asmx) and I want it to use Json.NET to serialize all the objects that I return from that web service, is there a way to do that?
In other words, I have a class like this:
...
6
votes
5answers
3k views
Using Json.NET converters to deserialize properties
I have a class definition that contains a property that returns an interface.
public class Foo
{
public int Number { get; set; }
public ISomething { get; set; }
}
Attempting to serialize ...
6
votes
2answers
3k views
LINQ and JSON.NET when the property names vary
I am attempting to parse some JSON content in to C#. For the simpler cases I am having great success with JSON.NET and really appreciate the clean approach offered by the LINQ provider. Here's an ...
5
votes
2answers
69 views
Getting an OutOfMemoryException while serialising to JSON?
I am serializing , a MultiDictionary<String,Object>
http://powercollections.codeplex.com/ to json .
It has 618 elements with elements being deeply nested ,i.e. a single Object may have several ...
5
votes
2answers
488 views
how to deserialize JSON into IEnumerable<BaseType> with Newtonsoft JSON.NET
given this JSON:
[
{
"$id": "1",
"$type": "MyAssembly.ClassA, MyAssembly",
"Email": "me@here.com",
},
{
"$id": "2",
"$type": "MyAssembly.ClassB, MyAssembly",
"Email": ...
5
votes
1answer
282 views
Convert from JSon to Object Collection
Below is my json string, which i am trying to parse to list of my class
i am using NewtonsJson.net.3.5
[
{
"message": {
"$": "@12:55 Big Rally on South Bound of Dr. B.A. ...
5
votes
2answers
2k views
Deserialize json with json.net c#
am new to Json so a little green.
I have a Rest Based Service that returns a json string;
{"treeNode":[{"id":"U-2905","pid":"R","userId":"2905"},
{"id":"U-2905","pid":"R","userId":"2905"}]}
I have ...
5
votes
1answer
4k views
Deserializing variable Type JSON array using DataContractJsonSerializer
I have a JSON string in this form:
string jsonStr = "[\"A\", [\"Martini\", \"alovell\"],[\"Martin\", \"lovell\"]]"
I am trying to deserialize the JSON using the C# .NET deserializer ...
4
votes
4answers
95 views
How do I parse a JSON object in C# when I don't know the key in advance?
I have some JSON data that looks like this:
{
"910719": {
"id": 910719,
"type": "asdf",
"ref_id": 7568
},
"910721": {
"id": 910721,
"type": "asdf",
"ref_id": 7568
},
...
4
votes
1answer
73 views
Deserialize JSON to anonymous object using JSON.NET
Im using JSON.NET do deserlaize an object, but i cant get it to work with the current structure of the object that im using.
...
4
votes
5answers
148 views
How do deserialize this JSON into an object?
I'm trying to use JSON.Net to deserialize a JSON object into a C# object.
The object I want to create is MonthlyPerformance which contains a list of Type, which contains a list of Categories, which ...
4
votes
2answers
185 views
Deserializing JSON in WP7
I have this JSON which I am trying to read on Windows Phone. I've been playing with DataContractJsonSerializer and Json.NET but had not much luck, especially reading each 'entry':
...
4
votes
1answer
361 views
How to implement custom JsonConverter in JSON.NET to deserialize a List of base class objects
I am trying to extend the JSON.net example given here
http://james.newtonking.com/projects/json/help/CustomCreationConverter.html
I have another sub class deriving from base class/Interface
public ...
4
votes
1answer
177 views
parsing an enumeration in JSON.net
i'm using JSON.net (maybe v3.5ish? it's from oct. 2010). and i'm trying to deserialize some json into an enumeration:
geometryType: "esriGeometryPolygon"
i have this enumeration:
/// ...
4
votes
3answers
136 views
Serialize json to an object with catch all dictionary property
I would like to use JSON.net to deserialize to an object but put unmapped properties in a dictionary property. Is it possible?
For example given the json,
{one:1,two:2,three:3}
and the c# ...
4
votes
3answers
831 views
How to build object hierarchy for serialization with json.net?
I'm trying to properly write code to build a data structure to serialize into json.
I'm using json.net.
I don't want to create a bunch of classes to hold this data, as I thought there should be some ...
4
votes
1answer
124 views
Encode umlauts in JSON.NET
Is it possible to encode strings with umlauts in JSON.NET that the serialized string is encoded like this?
"Pläne" => "Pl\u00e4ne"
Update:
After sra anwser I came up with the following code that ...
4
votes
1answer
273 views
What is the correct way to force JSON.Net to escape forward slash (solidus) characters?
So for business reasons I need to force JSON.NET to escape a JSON blob like so:
{ url: 'http://some.uri/endpoint' }
As
{ "url": "http:\/\/some.uri\/endpoint" }
Which is to say it needs to escape ...
4
votes
1answer
519 views
Serialize one to many relationships in Json.net
I am using the Entity Framework code first for data access and I have a Company class which has a collection of Employees. The Employee class also has a Company property.
I would like to be able to ...
4
votes
2answers
765 views
JSON Naming Convention
Is there a standard on JSON naming? I see most examples using all lower case separated by underscore (lower_case). But, can you use PascalCase or camelCase?
4
votes
1answer
343 views
Json.NET says “operation may destabilize the runtime” under .NET 4, but not under .NET 3.5
This code:
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
var client = new WebClient();
...
4
votes
1answer
237 views
How to serialize\deserialize a property where the property name is dependent on the data
I'm trying to get the following json (see below) deserialized (using newtonsoft json serializer) and the problem is the variable named "2010-12" it is obviously dependent on the data returned - it ...
4
votes
1answer
271 views
How do C# classes deal with dollar signs in JSON?
I'm getting a JSON feed from Google's data API and a lot of the property names start with a $ character (dollar sign).
My problem is that I can't create a C# class with a variable name starting with ...
4
votes
2answers
360 views
Serializng and deserializing empty arrays to Dictionary/object
I'm working on a Silverlight 3 application that has to communicate with a PHP 5.2.13 server app.
We're using JSON.NET to finish the job, but I'm having some problems with Dictionaries.
I'm doing some ...
4
votes
1answer
325 views
Using JSON.NET, how do I serialize these inherited members?
I have the following:
public class MyClass : SuperClass {
[JsonProperty]
public virtual string Id { get; set; }
}
public abstract class SuperClass {
public int GetHashCode() {
//do ...