Class ByteArraySerializer
Implements
Inherited Members
Namespace: Tenray.ZoneTree.Serializers
Assembly: ZoneTree.dll
Syntax
public sealed class ByteArraySerializer : ISerializer<Memory<byte>>
Methods
| Improve this Doc View SourceDeserialize(Memory<byte>)
Deserialize the bytes into entry type.
Declaration
public Memory<byte> Deserialize(Memory<byte> bytes)
Parameters
Type | Name | Description |
---|---|---|
Memory<byte> | bytes | The bytes to be deserialized. |
Returns
Type | Description |
---|---|
Memory<byte> | The deserialized entry. |
Serialize(in Memory<byte>)
Serialize the entry into byte array.
Declaration
public Memory<byte> Serialize(in Memory<byte> entry)
Parameters
Type | Name | Description |
---|---|---|
Memory<byte> | entry | The entry |
Returns
Type | Description |
---|---|
Memory<byte> | The serialized bytes. |