Serializes messages with ZeroFormatter.
Fastest C# Serializer and Infinitely Fast Deserializer for .NET, .NET Core and Unity.
Usage
endpointConfiguration.UseSerialization<ZeroSerializer>();
This serializer does not support messages defined as interfaces. If an explicit interface is sent, an exception will be thrown with the following message:
Interface based message are not supported.
Create a class that implements the desired interface
Instead, use a public class with the same contract as the interface. The class can optionally implement any required interfaces.
Custom content key
When using additional deserializers or transitioning between different versions of the same serializer it can be helpful to take explicit control over the content type a serializer passes to NServiceBus (to be used for the ContentType header).
var serialization = endpointConfiguration.UseSerialization<ZeroSerializer>();
serialization.ContentTypeKey("custom-key");