NServiceBus by Particular Software

<PackageReference Include="NServiceBus" Version="8.0.0" />

 IMessageSerializer

public interface IMessageSerializer
Interface used for serializing and deserializing messages.
string ContentType { get; }

Gets the content type into which this serializer serializes the content to.

object[] Deserialize(ReadOnlyMemory<byte> body, IList<Type> messageTypes = null)

Deserializes from the given stream a set of messages.

void Serialize(object message, Stream stream)

Serializes the given set of messages into the given stream.