Class NewtonsoftJsonMessageSerializerBase
The base class for Newtonsoft
Implements
Inherited Members
Namespace: Silverback.Messaging.Serialization
Assembly: Silverback.Integration.Newtonsoft.dll
Syntax
public abstract class NewtonsoftJsonMessageSerializerBase : IMessageSerializer
Properties
| Improve this doc View sourceEncoding
Gets or sets the message encoding. The default is UTF8.
Declaration
public MessageEncoding Encoding { get; set; }
Property Value
Type | Description |
---|---|
Message |
RequireHeaders
Gets a value indicating whether headers are mandatory for this serializer implementation or configuration to work properly.
Declaration
public abstract bool RequireHeaders { get; }
Property Value
Type | Description |
---|---|
bool |
Settings
Gets or sets the settings to be applied to the Json.NET serializer.
Declaration
public JsonSerializerSettings Settings { get; set; }
Property Value
Type | Description |
---|---|
Json |
SystemEncoding
Gets the Encoding corresponding to the Message
Declaration
protected Encoding SystemEncoding { get; }
Property Value
Type | Description |
---|---|
Encoding | A Encoding that matches the current Message |
Methods
| Improve this doc View sourceDeserializeAsync(Stream?, MessageHeaderCollection, MessageSerializationContext)
Deserializes the byte array back into a message object.
Declaration
public abstract 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. |
Message |
messageHeaders | The message headers collection. |
Message |
context | The context information. |
Returns
Type | Description |
---|---|
Value |
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 abstract ValueTask<Stream?> SerializeAsync(object? message, MessageHeaderCollection messageHeaders, MessageSerializationContext context)
Parameters
Type | Name | Description |
---|---|---|
object | message | The message object to be serialized. |
Message |
messageHeaders | The message headers collection. |
Message |
context | The context information. |
Returns
Type | Description |
---|---|
Value |
A Task<TResult> representing the asynchronous operation. The task result contains the Stream with the serialized message. |