Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
265 views

Serialize Dictionary<TKey, TValue> to JSON with DataContractJsonSerializer

I have an object tree that I'm serializing to JSON with DataContractJsonSerializer. Dictionary<TKey, TValue> gets serialized but I don't like the markup - the items are not rendered like this: ...
5
votes
1answer
811 views

DataContractJsonSerializer DateTime implicit timezone conversion

I have a date time in the database and I retrieve it from the database using Entity Framework, I then pass out the data via JSON API through the DataContractJsonSerializer. The time in the date time ...
3
votes
1answer
94 views

Deserializing JSON in ASP.NET C#

I have the following JSON: { "recipe": { "rating": 19.1623, "source_name": "Allrecipes", "thumb": "http://img.punchfork.net/8f7e340c11de66216b5627966e355438_250x250.jpg", ...
2
votes
2answers
59 views

parse an array as a Json string using DataContractJsonSerializer WP7

How can I parse the elements of an array in a Json string using DataContractJsonSerializer? The syntax is: { "array":[ { "elementsProperies":"SomeLiteral" } ] }
2
votes
3answers
120 views

Parsing JSON key value pairs in C#

With reference to Parse JSON in C# I am trying to parse the following JSON feed in C# and I have a problem with accessing the data in "rates". I have tried to deserialize this into a List> or ...
2
votes
2answers
304 views

How can I serialize anonymous type using DataContractJsonSerializer

Using the code below, how can I use the DataContractJsonSerializer to convert the resultant list to JSON? ETA: I have seen several extension methods to generically JSON-ize objects, but I'm not sure ...
2
votes
1answer
214 views

How do I format a DateTime structure so that it matches the format used by DataContractJsonSerializer?

When I serialize the current time as a DateTime using the DataContractJsonSerializer I get the following 1307654074638-0500. I'd like to generate my own JSON that could be deserialized by the ...
2
votes
1answer
443 views

.NET DataContractJsonSerializer, Nested collections throwing me for a loop

I'm working on a class to get the Latitude and Longitude of an address by 3 different providers (just for comparison sake). Note, this might look like a lot to look at, but some info is just there ...
2
votes
1answer
439 views

DataContractJsonSerializer: Serializing a class with an interface property

I am trying to serialize a Class like this: [DataContract] public class GenericFlow { [DataMember] public ISource Source { get; set; } [DataMember] public IList<IFilter> ...
2
votes
1answer
248 views

Constructors Not Called On Deserialization

Various places I've been reading have pointed out that on deserialization, the .NET Framework makes a call to FormatterServices.GetUninitializedObject, in which constructors are not called and field ...
2
votes
1answer
634 views

Using DataContractJsonSerializer

I am trying to host a WCF service that responds to incoming requests by providing a json output stream. I have the following type [DataContract] [KnownType(typeof(List<HubCommon>))] ...
2
votes
2answers
1k views

Way to Deserialize JSON from HttpWebResponse without 3rd party frameworks

I'm trying to keep from depending on open source or third party libraries such as Json.NET to parse incoming JSON from an HttpWebResponse. Why? Because the more reliance on open source frameworks to ...
1
vote
3answers
107 views

DataContractJsonSerializer - Deserializing DateTime within List<object>

I'm having trouble using the System.Runtime.Serialization.Json.DataContractJsonSerializer class to deserialize DateTime instances contained within a List<object>. I cannot seem to get DateTime ...
1
vote
1answer
139 views

Deserializing JSON object with unknown fields

The question is similar to Deserializing JSON with unknown fields but I would like to use the built in DataContractJsonSerializer instead. So I have JSON data like that: { "known1": "foo", "known2": ...
1
vote
1answer
220 views

JSON sample to [DataContract]

Is there any tool allowing to generate DataContract entity definitions based on a JSON sample? I'm really missing the old good WSDL metadata with code generation facilities.
1
vote
0answers
125 views

Safest place for the XmlSerializer to save temp files

It's come to my attention that the XmlSerializer needs to use disk space to do its bidding. If there is no writeable %temp% folder, then it fails with an error as follows: Source : System.Xml ...
1
vote
0answers
125 views

Windows Phone - Background Task - Broken at DataContractJsonSerializer.WriteObject

I am using Background Task in Windows Phone Mango. I need to send data to server using JSON format. But when DataContractJsonSerializer.WriteObject function is executed, nothing happens thereafter. ...
1
vote
2answers
1k views

System.Runtime.Serialization.Json.DataContractJsonSerializer.WriteObject ignores NonSerialized attribute while serializing

If i try to serialize an object of the following ClassToSerialize class with System.Runtime.Serialization.Json.DataContractJsonSerializer [DataContract,Serializable] public class ClassToSerialize { ...
1
vote
2answers
1k views

Deserializing a JSON array of mixed types

I'm having trouble deserializing a JSON array of mixed types using the DataContractJsonSerializer class. I've spent a bunch of time looking for a solution to no avail, so I thought I'd go ahead and ...
0
votes
1answer
25 views

Is C# DataContracts expressive enough to describe GeoJSON correctly?

So I've been trying to map GeoJSON to C# DataContracts so that we're able to easily support returning GeoJSON in our WCF/REST-apis. The more i work with DataContracts and serialization the more i get ...
0
votes
0answers
118 views

How to serialize class that derives from class decorated with DataContract(IsReference=true)?

I have class A that derives from System.Data.Objects.DataClasses.EntityObject. When I try to serialize using var a = new A(); DataContractJsonSerializer serializer = new ...
0
votes
1answer
78 views

Silverlight 4 DataContractJsonSerializer, private fields of a derived class

I use DataContractJsonSerializer to deserialize json data in Silverlight 4. Json data key names do not match my class property names; so I guess I have to use DataMemberAttribute. So I did the ...
0
votes
1answer
170 views

How to deserialize JSON returned by WCF Data Service (OData)

An external OData Service returns the following during a POST operation (for a service operation): { "d" : { "__metadata": { "uri": "http://dd-1620/ServiceData.svc/Customers('1001')", "type": ...
0
votes
1answer
87 views

Silverlight json won't serialize

I have been trying to serialize some json data in Silverlight. I am using the following code System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = new ...
0
votes
1answer
355 views

DataContractJsonSerializer and maxItemsInObjectGraph

How can I set the maxItemsInObjectGraph for the DataContractJsonSerializer? I get an error saying "Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change ...
0
votes
0answers
179 views

Unexpected DataContractJsonSerializer Exception

Can anyone explain why I receive the following exception from the code below? SecurityException - The data contract type '...+Foo' cannot be deserialized because the member 'Bars' is not public. ...
0
votes
0answers
447 views

Serializing custom type with json string as property is adding escape sequences ( backslash)?

I'm trying to serialze a type called MyClass which has a json string as a property. I will be persisting MyClass instance as a json string in database. This is my json string representation of the ...
0
votes
1answer
613 views

How do DataContracts work? - Deserialize Json

I grabbed an example off of this SO question, and built my own custom Google Maps object used for deserializing the json object. Now the code works like a champ, but I just need an explanation on ...
0
votes
1answer
277 views

Deserializing JSON 2 Dimension array of values

I've got a 2 dimensional of values in JSON format: [[57, 2], [57, 2], [58, 2], [55, 2], [60, 2], [54, 1], [59, 11]] Each of the pairs actually contains a pair of unrelated readings, and there is one ...
0
votes
2answers
268 views

.NET Append JSON to a string already serialized with DataContractJsonSerializer

I am using DataContractJsonSerializer to serialize an object to json, and then returning to the client with AJAX. I now need to serialize another object to return along with it. The problem is MSs "d" ...
0
votes
1answer
201 views

Accessing DataContractJsonSerializer<T> properties via re-factored foreach loop

I have the code below. The line string content = twitterMsg.text; is creating the error 'Use of unassigned local variable' for twitterMsg. I don't seem able to access my ...
0
votes
1answer
932 views

Serialize an object using DataContractJsonSerializer as a json array

I have a class which contains a list of items. I want to serialize an instance of this class to json using the DataContractJsonSerializer as a json array. eg. class MyClass { List<MyItem> ...