Click or drag to resize
PackerCompatibilityOptions Enumeration
Defines compatibility options for Packer.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
[FlagsAttribute]
public enum PackerCompatibilityOptions
Members
  Member nameValueDescription
None0 No compatibility options. Packers use newest behavior.
PackBinaryAsRaw1 Packs byte array as raw(str) value, and also prohibits usage of str8 type for legacy unpacker implementations.
ProhibitExtendedTypeObjects2 Prohibits usage of any ext types for legacy unpacker implementations.
Classic3Packers should be use classic behavior. That is, do not use str8 and any ext types, and byte arrays must be packed as raw.
See Also