Namespace TypedRest.Serializers
Serialization of entities sent to and received from the server.
Classes
- BsonSerializer
Handles serializing/deserializing from/to BSON using Newtonsoft.Json. Uses camel-case naming and does not serialize
null
by default.
- NewtonsoftJsonSerializer
Handles serializing/deserializing from/to JSON using Newtonsoft.Json. Uses camel-case naming and does not serialize
null
by default.
- SystemTextJsonSerializer
Handles serializing/deserializing from/to JSON using System.Text.Json. Uses camel-case naming and does not serialize
null
by default.NuGet: TypedRest.SystemTextJson
- XmlSerializer
Handles serializing/deserializing from/to XML using XmlSerializer.