NewtonSoft is a software label by James Newton-King, author of the JSON.NET object serialization library.

learn more… | top users | synonyms

0
votes
0answers
21 views

XML to JSON Serialization NewtonSoft General Data Format JToken Value

I'm using NewtonSoft to convert XML to JSON data. With the following XML: <NewDataSet> <Student> <ID>1</ID> <Name>Alex</Name> </Student> ...
0
votes
0answers
29 views

MSTest Doesn't Pull Down Different Versions of Newtonsoft.JSON.dll

We use MSTest to run automated tests against our solution. Some of the projects in the solution are targeted for .NET 3.5 and are referencing Newtonsoft.JSON.dll version 4.0.8. Other projects are ...
0
votes
0answers
12 views

Inheriting DefaultContractResolver and treating refereced entities differently

I want to serialize only changed properties. I was managed to do it for the root type, but it contains references to other objects to be serialized (might even be of the same time). This is my ...
0
votes
1answer
28 views

JSON Mapping to Object thats not 1 to 1

I am trying to deserialize a JSON response into an object that doesn't map 1 to 1. The JSON that I am trying to deserialize is { "CustomerID": "1", "CustomerName": "John Doe", "BillingAddressLine1": ...
0
votes
0answers
28 views

What does “ReferenceLoopHandling” mean?

I'm doing some test on Newtonsoft.Json.JsonConvert.SerializeObject(object value, JsonSerializerSettings settings); And I use this method like this: JsonConvert.SerializeObject(product, new ...
0
votes
0answers
15 views

Monotouch SerializeObject randomly throws exceptions

This following code throws an exception once in a while, what makes it much harder to understand the problem. GetFeaturedApiRequest request = new GetFeaturedApiRequest (); request.RequesterID = ...
0
votes
1answer
40 views

Remove Null values in JSON and Update JSON

I have jsonarray as a string by serializing a list using newtonsoft as below ...
0
votes
1answer
29 views

Deserializing Json to Object list

I have the following Json that I am looking to deserialize into a list of TwitterTiles (see below). JSON: { "twitterTile": [ { "hashtag": "#genoa", ...
2
votes
1answer
43 views

How can I deserialize using JSON.NET and preserve the parent object

I have some JSON like: { "companyName": "Software Inc.", "employees": [ { "employeeName": "Sally" }, { "employeeName": "Jimmy" } ] } I want to deserialize it into: ...
0
votes
1answer
36 views

Using JsonConverter on default value while ignoring default values

I just upgraded my json serializer from newtonsoft 4.5 to 5 - I have a custom JsonConverter to handle DateTime types, and it converts my dates to numbers I work with, but having DafaultValueHandling ...
0
votes
0answers
62 views

Strange Json.net exception “Input string was not in a correct format.”

I have 2 quite complicated objects, one is parsing successfully, and other is throwing exception. The only difference between objects is 2 double-type properties. I'm deserializing it as var item = ...
0
votes
1answer
54 views

XML to JSON Conversion seems to add extra backslashes

I am trying to convert an xml document to json by using Newtonsoft JsonConvert.SerializeXmlNode. string json = JsonConvert.SerializeXmlNode(xmlDoc); return json; xmlDoc.InnerXml contains <?xml ...
0
votes
3answers
201 views

Json.NET serialize object with root name

In my web app I'm using Newtonsoft.Json and I have following object [Newtonsoft.Json.JsonObject(Title = "MyCar")] public class Car { [Newtonsoft.Json.JsonProperty(PropertyName = "name")] ...
-2
votes
3answers
53 views

Newtonsoft Parse Json Error

I'm trying to fill my class with data from json. But I have a problem with getting list of codes for today and from forecast? string js = ...
0
votes
1answer
90 views

Deserialization the json string gives Value cannot be null. Parameter name: s

"[{\"active\":true,\"campaignId\":11401,\"createdtime\":1355919181000,\"description\":\"Ankit Demo Edited By ...
0
votes
1answer
158 views

Serializing with Newtonsoft JsonConvert fails on particular set of properties

I'm trying to serialize an object tree to a json string. The object tree is complex and generally serializes without problems with exception of one set of properties that are objects coming from a ...
0
votes
2answers
87 views

Newton.JSON convert dynamic object to JObject instead of dynamic object

string result ="{"AppointmentID":463236,"Message":"Successfully Appointment Booked","Success":true,"MessageCode":200,"isError":false,"Exception":null,"ReturnedValue":null}" dynamic d = ...
1
vote
1answer
52 views

How to get property from dynamic JObject programmatically

I'm parsing a JSON string using the NewtonSoft JObject. How can I get values from a dynamic object programmatically? I want to simplify the code to not repeat myself for every object. public ...
0
votes
1answer
64 views

How to parse Twitter Trends Json response

I am trying to parse the following JSon to access the name property. But I am having some difficulty. {[ { "trends": [ { "name": "#penaltypointsforpricks", "url": ...
0
votes
1answer
68 views

How to access elements of a JArray

I have the following Json gotten from Twitter + token {[ { "trends": [ { "name": "Croke Park II", "url": "http://twitter.com/search?q=%22Croke+Park+II%22", ...
1
vote
1answer
324 views

How to Parse Json children in VB.NET Newtonsoft

I am having touble parsing Json using VB.NET using the Newtonsoft Json.Net library Json Data --------- { "CC": "sample.cc@emailDomain.com", "CcFull": [ { ...
0
votes
1answer
286 views

.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":"", ...
1
vote
1answer
52 views

Custom impromptuobject for json.net deserialization

I was playing around with impromptu interface over a jobject and ran into the following issue https://code.google.com/p/impromptu-interface/issues/detail?id=17 The issue is marked as 'Won't fix' and ...
0
votes
1answer
53 views

C# to JSON serialization using JSON.Net

I have a C# List which looks like this: var reqUsers = from user in users select new { username = user.username, firstName = user.firstName, lastName = user.lastName, ...
1
vote
0answers
179 views

Escape special characters of JSON in c#

I hava JSON object with one field has string value " Ran a defrag removed a few virus' and tried again " ' is special character in JSON. I am using c#, NewtonSoftJSON library. Is there any best ...
0
votes
1answer
14 views

Permissive Netonsoft,Json parsing

I am trying to retrieve a permissive dictionary using Newtonsoft.Json. Basically, what I the tool is doing is when it has an input like string jsonText = @"{ "key1" : "val1", "key2" : ...
2
votes
0answers
40 views

RuntimeBinderException when parsing json with Newtonsoft.Json

I'm trying to parse simple json to dynamic object in Windows phone 8. I'm using Newtonsoft.JSON library with this code: dynamic response = JObject.Parse(responseText); string streamRequestUrl = ...
4
votes
2answers
122 views

Use different versions of dll file in one app

I have an c# application with two libraries ( moon-apns, tweetsharp ) .. Each library has a reference for newtonsoft.json.dll but different versions ... My app build successfully but one library works ...
2
votes
2answers
46 views

json to object, how should my object be like?

I have a json string like this { "class": "go.GraphLinksModel", "nodeDataArray": [ {"key":"CTR:2", "type":"Controller", "devicename":"ACU-1K", ...
1
vote
2answers
326 views

MVC WebApi HttpGet with complex object

I have an existing WebApi action, that I want to switch from HttpPost to HttpGet. It currently takes a single complex object as parameter. The model: public class BarRequest { ...
2
votes
3answers
75 views

TypeNameHandling in Newtonsoft requires $type to be the first property?

I have the following method in my web api public void Put(string id, [FromBody]IContent value) { //Do stuff } I'm using backbone js to send the following JSON to the server using fiddler the ...
0
votes
0answers
62 views

JSON accepted format according to Newtonsoft Json

I am trying to parse some JSON objects which is made just of (string,string) pairs, in order to emulate Resjson behaviour. The file I am parsing contains this. { "greeting":"Hello world", ...
0
votes
1answer
95 views

newtonsoft json.net skip string or integers

i got a little problem over here, i want to serialize an a Dictionary and it contains string,integers,object now i am looping through the Dictionary var data =""; foreach (var dict in dictObject) ...
1
vote
0answers
187 views

Deserializing IList objects with Newtonsoft JSON

I'm using a ConcreteCollectionTypeConverter to deserialize objects of type IList. I'm probably doing it very wrong because I keep getting the exception "Cannot convert List to IList" My object ...
0
votes
1answer
90 views

Json Converter not recognising null attributes and throwing exceptions

Say I have a sample Json format string as string per1 = ...
0
votes
0answers
45 views

How to deserialize json data to TwitterResponse?

I have the following json data returned from the twitter API [ { "annotations":{ }, "resultType":"Tweet", "score":1.0, "groupName":"TweetsWithConversation", ...
2
votes
1answer
270 views

C# JsonConvert Error [duplicate]

I have this Json Return: [ { "url": "http://xxx.xxx.xxx", "code": 0, "aplication": { "version": [ { "silent": true, "checksum": ...
0
votes
1answer
57 views

Newtonsoft custom ignore convention

I want to ignore certain properties in a class, but I want to keep the class POCO for many reasons. Hence I do not want to introduce dependency to Json.NET, and do not want to use JsonIgnoreAttribute. ...
3
votes
2answers
616 views

mvc4 webapi custom json serializer for specific type

I know MVC4 uses NewtonSoft Json de/serialization. I was wondering how I can exclude a property on serialization to client, without using any of the data annotations like JsonIgnore/DataMemberIngore ...
0
votes
2answers
250 views

Passing recordset from C# code-beind into aspx page as Json

On Page_Load I am getting data like var products = BLL.Presenters.Products.GetAll(); It returns a list if about 10 products. I would like to pass that LIST of products to the aspx page as json and ...
0
votes
1answer
120 views

Can I use Resource Strings in a JsonProperty Attribute in C#?

I'm connecting to an API that is likely to be modified significantly in the coming months, and want to store the correlating API tags in a resource to ensure that they can be easily updated when ...
0
votes
1answer
310 views

deserializing JSON to .net object using NewtonSoft - array

{ "albums": [ { "name": "Muse", "permalink": "Muse", "cover_image_url": "http://image.kazaa.com/images/69/01672812 1569/Yaron_Herman_Trio/Muse/Yaron_Herman_Trio-Muse_1.jpg", ...
3
votes
2answers
176 views

Why does Newtonsoft.JSON put a '$' sign in each property of each element?

I have been using JSON from the King for a long time, and I have just noticed, that he adds for each element that is a property name : { "$id": "1", "BackGroundColor": "#FFFFFF", ...
0
votes
2answers
132 views

Object mapper from and to json

I am developing an application system that has multiple executable applications on different platforms (java and .net). For communication between them I am using JSON format. So I need to map object ...
3
votes
1answer
134 views

Use Dash (-) Character in enum parameter

public enum TimeFormat { @12-hour, @24-hour } Hi, I use newtonsoft deserializer for deserialize json string to an object. JsonDeserializer checks enum parameter name. if it's same ...
0
votes
1answer
176 views

Json structure is returned empty, without property names and values when using Newtonsoft JsonConvert in FB C# client

I'm working on asp.net mvc 4 application which uses Facebook C# SDK (6.0.10.0) and Newtonsoft.Json (4.5.0.0). Request with FacebookClient returns expando object: [Authorize] public ActionResult ...
1
vote
2answers
445 views

Json.NET serialize Dictionary as part of parent object

I'm using Json.Net for serialization. I have a class with the Dictionary: public class Test { public string X { get; set; } public Dictionary<string, string> Y { get; set; } } Can I ...
1
vote
0answers
99 views

Adding description to properties while generating JSON schema using json.net

Is it possible to add description attribute to properties? I'm using json.net to generate schema: var shema = new Newtonsoft.Json.Schema.JsonSchemaGenerator(); var sh = ...
2
votes
1answer
190 views

JSON Cannot Deserialize JSON array into type

I keep having issues trying to get this JSON to deserialize, even after trying multiple approaches. Here is the JSON that is returned by the web service: [ { "data":[ { ...
0
votes
1answer
95 views

How to deserialize a property with a dash (“-”) in it's name with NewtonSoft JsonConvert?

We have a JSON object with one of the object having a dash in its name. Ex below. { "veg": [ { "id": "3", "name": "Vegetables", "count": "25" ...

1 2 3 4 5