Top "Json.net" questions

Json.

JSON.NET How To Reference?

I just installed the Json.Net package and now I am wondering how I can import this to my project? …

visual-studio-2010 import json.net nuget-package
How can I get a list of keys from Json.NET?

I'm using C# and Json.NET. If I have a JObject, I want a list of the keys within the …

c# json.net
Newtonsoft JsonSerializer - Lower case properties and dictionary

I'm using json.net (Newtonsoft's JsonSerializer). I need to customize serialization in order to meet following requirements: property names must …

c# json.net
Making a property deserialize but not serialize with json.net

We have some configuration files which were generated by serializing C# objects with Json.net. We'd like to migrate one …

c# json.net
Order of serialized fields using JSON.NET

Is there a way to specify the order of fields in a serialized JSON object using JSON.NET? It would …

c# json json.net
Using JSON.NET as the default JSON serializer in ASP.NET MVC 3 - is it possible?

Is it possible to use JSON.NET as default JSON serializer in ASP.NET MVC 3? According to my research, it …

asp.net-mvc-3 json.net jsonresult
How to convert datatable to json string using json.net?

How to convert datatable to json using json.net? Any suggestion... I ve downloaded the necessary binaries... Which class should …

c# json datatable json.net
JObject how to read values in the array?

This is the json string: {"d":[{"numberOfRowsAdded":"26723"}]} string json = DAO.getUploadDataSummary(); JObject uploadData = JObject.Parse(json); string array = (string)uploadData.…

c# json.net
JSON.NET DeserializeObject to List of Objects

I'm trying to Deserialize object to list of object using JSON.NET lib. My json file is: [ { "id": 1, "name": "Poczta", "…

c# windows-store-apps json.net windows-phone-8.1
Exclude property from serialization via custom attribute (json.net)

I need to be able to control how/whether certain properties on a class are serialized. The simplest case is […

c# serialization json.net custom-attributes