System.
I have an MVC3 application running under .NET 4.0 and when I use JavascriptSerializer.Deserialize I'm getting an error. Error during …
vb.net asp.net-mvc-3 webclient javascriptserializerWhen I use the JavaScriptSerializer in C# I'm getting a "Invalid JSON primitive" exception. I assume the issue is with …
c# json javascriptserializerI have this C# object: var obj = new { username = "andrey", callback = "function(self) { return function() {self.doSomething()} (this) }" } I need …
c# ajax json javascriptserializerI am trying to create a JSON string which contains one container and one array. I can do this by …
c# .net json javascriptserializerI have a js object structured like: object.property1 = "some string"; object.property2 = "some string"; object.property3.property1 = "some string"; …
javascript asp.net-ajax serialization javascriptserializerWe are having such a nasty problem when deserializating a JSON date to a C# DateTime. The code is: JavaScriptSerializer …
c# json javascriptserializerI have some JSON that I need to deserialize so I'm using JavaScriptSerializer.DeserializeObject like: var jsonObject = serializer.DeserializeObject(line) …
c# json javascriptserializerI have the following data: {"data":{"id":"7IaWnXo","title":null,"description":null,"datetime":1397926970,"type":"image/png","animated":false,"width":60,"height":60,"…
c# exception javascriptserializerI have a function with a List return type. I'm using this in a JSON-enabled WebService like: [WebMethod(EnableSession = true)] […
asp.net javascriptserializerI have developed an asp.net web application and initially serialized some data to a json string using the built …
c# .net json.net javascriptserializer