.NET Framework class, Serializing and deserializing an instance of a type into an XML stream or document using a supplied data contract.
I have a struct in C# that wraps a guid. I'm using DataContractJsonSerializer to serialize an object containing an instance …
c# .net json datacontractserializerI have some class that I'm passing as a result of a service method, and that class has a get-only …
c# wcf properties datacontractserializerI have a web service that returns the following data: <?xml version=""1.0"" encoding=""UTF-8""?> <RESPONSE> <…
c# .net xml datacontractserializerI'm using DataContractSerializer to serialize an object that contains a Dictionary<string,object> member, which is marked with […
c# .net generics datacontractserializerIn a WCF 4.0 service we receive a huge amount of data in a generic list. This list object graph is …
wcf .net-4.0 datacontractserializerI have a smart client application communicating with its server via WCF. Data is created on the client and then …
c# .net wcf serialization datacontractserializerI am having issues specifying the dataContractSerializer maxItemsInObjectGraph in host's web.config. <behaviors> <serviceBehaviors> <behavior …
wcf web-config datacontractserializer servicebehaviorI'm having a strange problem with my WCF service that returns data in JSON format. I want to return information …
wcf json serialization datacontractserializerHow can I set a default value to a DataMember for example for the one shown below: I want to …
c# wcf datacontractserializerI am using DataContractJsonSerializer to serialize my custom object to JSON. But i want to skip the data members whose …
c# serialization datacontractserializer datacontractjsonserializer