Top "Jsonserializer" questions

The JsonSerializer enables to control how objects are encoded into JSON.

Cannot find JavaScriptSerializer in .Net 4.0

I cannot seem to find the JavaScriptSerializer object nor the the System.Web.Script.Serialization namespace within Visual Studio 2010. I …

c# visual-studio jsonserializer
Jackson enum Serializing and DeSerializer

I'm using JAVA 1.6 and Jackson 1.9.9 I've got an enum public enum Event { FORGOT_PASSWORD("forgot password"); private final String value; …

java enums jackson jsonserializer
Serializing object that contains cyclic object value

I have an object (parse tree) that contains child nodes which are references to other nodes. I'd like to serialize …

javascript json jsonserializer stringify
error CS0234: The type or namespace name 'Script' does not exist in the namespace 'System.Web'

I am trying to use JavaScriptSerializer in my application. I initially received Cannot find JavaScriptSerializer and I solved it by …

c# visual-studio-2010 javascriptserializer jsonserializer
Ruby objects and JSON serialization (without Rails)

I'm trying to understand the JSON serialization landscape in Ruby. I'm new to Ruby. Is there any good JSON serialization …

ruby json serialization jsonserializer
Does .NET 4 have a built-in JSON serializer/deserializer?

Does .NET 4 come with any class that serializes/deserializes JSON data? I know there are 3rd-party libraries, such as JSON.…

.net json serialization jsonserializer
JObject.Parse vs JsonConvert.DeserializeObject

What's the difference between JsonConvert.DeserializeObject and JObject.Parse? As far as I can tell, both take a string and …

c# json.net jsonserializer
Using Jackson JSON Generator, how can I write multiple objects to one field?

Suppose I have the following three classes (getters and setters left out for brevity): @JsonAutoDetect public class InfoCollection{ private InfoType1 …

java json jackson jsonserializer
In C#, how do I model a JSON object with multiple nested arrays?

I am getting this JSON response from a system I am connecting to and trying to figure out the best …

c# json parsing restsharp jsonserializer
django object is not JSON serializable error after upgrading django to 1.6.5

I have a django app which was running on 1.4.2 version and working completely fine, but recently i updated it to …

python json django jsonserializer django-jsonfield