Click or drag to resize
EnumSerializationMethod Enumeration
Represents enum type serialization method.

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public enum EnumSerializationMethod
Members
  Member nameValueDescription
ByName0 Enums are serialized with their name. It is more torelant to versioning but less efficient.
ByUnderlyingValue1 Enums are serialized with their underlying value. It is more efficient but less torelant to versioning.
See Also