17 lines
770 B
C#
17 lines
770 B
C#
using System;
|
|
using mROA.Abstract;
|
|
|
|
namespace mROA.Cbor
|
|
{
|
|
public interface IContextualSerializationToolKit
|
|
{
|
|
byte[] Serialize(object objectToSerialize, IEndPointContext context);
|
|
void Serialize(object objectToSerialize, Span<byte> destination, IEndPointContext context);
|
|
T Deserialize<T>(byte[] rawData, IEndPointContext context);
|
|
object Deserialize(byte[] rawData, Type type, IEndPointContext context);
|
|
T Deserialize<T>(ReadOnlyMemory<byte> rawData, IEndPointContext context);
|
|
object Deserialize(ReadOnlyMemory<byte> rawData, Type type, IEndPointContext context);
|
|
T Cast<T>(object nonCasted, IEndPointContext context);
|
|
object Cast(object nonCasted, Type type, IEndPointContext context);
|
|
}
|
|
} |