c# Programming Glossary: deserializer
How to serialize/deserialize optional XML enumeration in C#? http://stackoverflow.com/questions/10840197/how-to-serialize-deserialize-optional-xml-enumeration-in-c try to make the enumerated variable nullable Category the deserializer throws an exception because it is unable to deserialize a complex..
InvalidCastException when serializing and deserializing http://stackoverflow.com/questions/1141787/invalidcastexception-when-serializing-and-deserializing or your assembly loaded it normally. In fact the binary deserializer could be the one who loaded the assembly a second time though..
Deserializing variable Type JSON array using DataContractJsonSerializer http://stackoverflow.com/questions/1215479/deserializing-variable-type-json-array-using-datacontractjsonserializer I am trying to deserialize the JSON using the C# .NET deserializer DataContractJsonSerializer with the following code snippet MemoryStream..
Deserializing polymorphic json classes without type information using json.net http://stackoverflow.com/questions/19307752/deserializing-polymorphic-json-classes-without-type-information-using-json-net Json.NET given that there is no type property telling the deserializer which class is meant to be represented. There is a property..
How to deserialize only part of an XML document in C# http://stackoverflow.com/questions/369792/how-to-deserialize-only-part-of-an-xml-document-in-c-sharp . In main object which has a InnerObject that needs to be deserializer i implemented a IXmlSerializable interface then changed the..
Problem with deserializing JSON on datamember “__type” http://stackoverflow.com/questions/4115037/problem-with-deserializing-json-on-datamember-type if in the JSON document you have white space before it the deserializer would ignore it and not throw any exception. I had such a white..
Casting interfaces for deserialization in JSON.NET http://stackoverflow.com/questions/5780888/casting-interfaces-for-deserialization-in-json-net parameters to a constructor for the class The NewtonSoft deserializer is smart enough to figure out that it needs to use those concrete.. IVisit summary This constructor is required for the JSON deserializer to be able to identify concrete classes to use when deserializing..
Is there any way to JSON.NET-serialize a subclass of List<T> that also has extra properties? http://stackoverflow.com/questions/5863496/is-there-any-way-to-json-net-serialize-a-subclass-of-listt-that-also-has-extra that said... anyone know how to customize the serializer deserializer to treat this object differently M c# .net json serialization..
Fastest serializer and deserializer with lowest memory footprint in C#? http://stackoverflow.com/questions/626766/fastest-serializer-and-deserializer-with-lowest-memory-footprint-in-c serializer and deserializer with lowest memory footprint in C# I am currently using the..
Json.NET: Deserializing nested dictionaries http://stackoverflow.com/questions/6416017/json-net-deserializing-nested-dictionaries the next token is not an object then fall back on standard deserializer strings numbers etc. return serializer.Deserialize reader class..
The deserializer has no knowlege of any type that maps to this contract http://stackoverflow.com/questions/736900/the-deserializer-has-no-knowlege-of-any-type-that-maps-to-this-contract deserializer has no knowlege of any type that maps to this contract I'm.. contains data of the 'Informa Building' data contract. The deserializer has no knowlege of any type that maps to this contract. Add..
Field Initializer in C# Class not Run when Deserializing http://stackoverflow.com/questions/9419743/field-initializer-in-c-sharp-class-not-run-when-deserializing OnDeserializing or OnDerserialized attributes to have the deserializer call a function with the following signature void OnDeserializing..
C# automatic property deserialization of JSON http://stackoverflow.com/questions/945585/c-sharp-automatic-property-deserialization-of-json share improve this question What's happening here is the deserializer is trying to guess the name of your backing fields. You can..
|