netserializer icon indicating copy to clipboard operation
netserializer copied to clipboard

Fast(est?) .Net Serializer

Results 14 netserializer issues
Sort by recently updated
recently updated
newest added

Apologies for doing this all in one PR. Doing it separately would've produced three conflicting PRs which is even less ideal. Optimized float serialization to be faster and write less...

Added callback properties to Settings class which get called from the ObjectSerializer before an object gets serialized or deserialized. These callbacks can be used e.g. to log actually used types...

I have a binary file that i able do deserialize in a .net core 2.1 project but not in the 3.1 dot net core project ... It's your nuget is...

Even though the documentation states that Dictionary is a valid exception from the ISerializable issue, if a class Inherits from Dictionary, it is not serializable by netserializer...

This may already exist, but I'm not sure where to request/ask about it. Is there a way to get a hash of all of the types that Netserializer knows about?...

enhancement

Would it be possible to sign the assembly? This would allow it to be used in other signed assemblies. I can download source and do it, but wouldn't it make...

enhancement

I attempted to write my own inheritor of IDynamicTypeSerializer for handling DataContract objects. It would be very similar to the GenericSerializer. Some things that caused me a problem: the `Serializer.Settings`...

enhancement

When reading and writing to network connections (using NetworkStream) we often want to use async as it scales a lot better than having one thread for every client. Assuming we'd...

enhancement

In the current design of NetSerializer, would it be difficult to support properties of type `IEnumerable` so that a consumer could populate with the standard List or array of T?...

enhancement