Class BinaryFileMessageSerializer
Handles the default implementation of IBinaryFileMessage. It's not really a serializer, since the raw binary content is transmitted as-is.
Implements
Inherited Members
Namespace: Silverback.Messaging.BinaryFiles
Assembly: Silverback.Integration.dll
Syntax
public class BinaryFileMessageSerializer : IMessageSerializer
Properties
| Improve this doc View sourceDefault
Gets the default static instance of BinaryFileMessageSerializer.
Declaration
public static BinaryFileMessageSerializer Default { get; }
Property Value
Type | Description |
---|---|
BinaryFileMessageSerializer |
RequireHeaders
Gets a value indicating whether headers are mandatory for this serializer implementation or configuration to work properly.
Declaration
public bool RequireHeaders { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Improve this doc View sourceDeserializeAsync(Stream?, MessageHeaderCollection, MessageSerializationContext)
Deserializes the byte array back into a message object.
Declaration
public ValueTask<(object? Message, Type MessageType)> DeserializeAsync(Stream? messageStream, MessageHeaderCollection messageHeaders, MessageSerializationContext context)
Parameters
Type | Name | Description |
---|---|---|
Stream | messageStream | The Stream containing the message to be deserialized. |
MessageHeaderCollection | messageHeaders | The message headers collection. |
MessageSerializationContext | context | The context information. |
Returns
Type | Description |
---|---|
ValueTask<(object Message, Type MessageType)> | A Task<TResult> representing the asynchronous operation. The task result contains the
deserialized message (or |
SerializeAsync(object?, MessageHeaderCollection, MessageSerializationContext)
Serializes the specified message object into a byte array.
Declaration
public ValueTask<Stream?> SerializeAsync(object? message, MessageHeaderCollection messageHeaders, MessageSerializationContext context)
Parameters
Type | Name | Description |
---|---|---|
object | message | The message object to be serialized. |
MessageHeaderCollection | messageHeaders | The message headers collection. |
MessageSerializationContext | context | The context information. |
Returns
Type | Description |
---|---|
ValueTask<Stream> | A Task<TResult> representing the asynchronous operation. The task result contains the Stream with the serialized message. |