Table of Contents

Enum PreferredConversionType

Namespace
MASES.EntityFrameworkCore.KNet.Serialization
Assembly
MASES.EntityFrameworkCore.KNet.Serialization.dll

PreferredConversionType defines the preferred conversion the underlying serializer expected

public enum PreferredConversionType

Fields

Binary = 1

The preferred conversion expect a byte array, generally requested from binary based serializers like AVRO/Protobuf

Text = 0

The preferred conversion expect a string, generally requested from text based serializers like Json

Remarks

The value is not strictly mandatory, however it defines if the underlying serializer is Text (maybe Json) or Binary (Avro/Protobuf)