DataContractJsonSerializer is a .NET component that makes it possible to directly serialize .NET objects into JSON data and to deserialize such data back into instances of .NET types.
I'm attempting to use the following code to serialize an anonymous type to JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); …
c# json anonymous-types datacontractjsonserializer json-serializationOK, I am using the System.Runtime.Serialization and the DataContractJsonSerialization. The problem is that in the request I send …
c# json windows-phone-8 httpwebrequest datacontractjsonserializerI'm having trouble using the System.Runtime.Serialization.Json.DataContractJsonSerializer class to deserialize DateTime instances contained within a List<…
c# json datacontractjsonserializerI'm sure this question has been asked over and over again, but for some reason, I still can't manage to …
c# json datacontractjsonserializerWhen I deserialize my jsonstring ,I am getting error message There was an error deserializing the object of type RecordInfo. …
c# json datacontractjsonserializerIf i try to serialize an object of the following ClassToSerialize class with System.Runtime.Serialization.Json.DataContractJsonSerializer [DataContract,Serializable] …
c# json datacontractjsonserializerI am using DataContractJsonSerializer to serialize my custom object to JSON. But i want to skip the data members whose …
c# serialization datacontractserializer datacontractjsonserializerIm trying to deserialize data that Ive got over POST in JSON format but having some problem. The error message …
c# json serialization .net-core datacontractjsonserializerI've been searching for the past 4 hours for ways on how to tackle this problem, and I've not yet found …
c# json serialization deserialization datacontractjsonserializerIs there any tool allowing to generate DataContract entity definitions based on a JSON sample? I'm really missing the old …
c# json serialization datacontract datacontractjsonserializer