Is there a way to change how the DataContractJsonSerializer serializes dates? Currently, it\'ll convert a date to something like:
I have the following code in which I\'m trying to serialize a list to a file public static void Serialize<T>(this IList<T> list, string f开发者_如何学GoileName)
Using silverlight 4, with RIA Services Toolkit May 2010. I have an Entity Data Model (.edmx) which contains a FK reference.
We have a legacy system that needs to be fed (XML) data in a most unstructured format. Is the following even possible with the .NET DataContractSerializer?
When I am deserializing my object back to it\'s original type my object is always null. Here is my code:
I\'m getting following exception System.NotImplementedException: The requested feature is not implemented.
I am having problem to find some information about how to get a custom converter invoked for a given property when serializing a C# object to JSON (and vice-versa).
I am trying to use WCF service to upload GZip files. Im trying to compress files using Gzip and then passing it through to WCF service to be uploaded to server.
I\'m having an issue serializing objects when sending them to my WCF services.My classes look like this.
I\'m a novice at serialization and I\'ve run into a problem.I have a REST service that returns an array of IDDescriptionPair objects.When consuming the service, I\'m using the \"Paste XML as Types\" V