Click or drag to resize
SerializationMethodGeneratorOption Enumeration
Define options of serializer generation.

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public enum SerializationMethodGeneratorOption
Members
  Member nameValueDescription
CanDump0 The generated method IL can be dumped to the current directory. It is intended for the runtime, you cannot use this option.
CanCollect1 The entire generated method can be collected by GC when it is no longer used.
Fast2 Prefer performance. This options is default.
See Also