Top "Json.net" questions

Json.

JSON.NET Error Self referencing loop detected for type

I tried to serialize POCO class that was automatically generated from Entity Data Model .edmx and when I used JsonConvert.…

json serialization json.net
How to write a JSON file in C#?

I need to write the following data into a text file using JSON format in C#. The brackets are important …

c# json json.net asp.net-web-api
Using JsonConvert.DeserializeObject to deserialize Json to a C# POCO class

Here is my simple User POCO class: /// <summary> /// The User class represents a Coderwall User. /// </summary> …

c# json serialization json.net poco
How can I change property names when serializing with Json.net?

I have some data in a C# DataSet object. I can serialize it right now using a Json.net converter …

c# serialization json.net
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 …

c# json json.net deserialization
Convert Newtonsoft.Json.Linq.JArray to a list of specific object type

I have the following variable of type {Newtonsoft.Json.Linq.JArray}. properties["Value"] {[ { "Name": "Username", "Selected": true }, { "Name": "Password", "Selected": …

c# json.net
NewtonSoft.Json Serialize and Deserialize class with property of type IEnumerable<ISomeInterface>

I am trying to move some code to consume ASP.NET MVC Web API generated Json data instead of SOAP …

c# json serialization json.net deserialization
How to import JsonConvert in C# application?

I created a C# library project. The project has this line in one class: JsonConvert.SerializeObject(objectList); I'm getting error …

c# json.net
.NET NewtonSoft JSON deserialize map to a different property name

I have following JSON string which is received from an external party. { "team":[ { "v1":"", "attributes":{ "eighty_min_score":"", "home_or_…

json c#-4.0 serialization deserialization json.net
Parse Json string in C#

I'm trying to read a Json string in C#, but I'm having trouble figuring out just how to parse the …

c# json json.net