SerializationMethodGeneratorOption Enumeration |
Define options of serializer generation.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public enum SerializationMethodGeneratorOption
Public Enumeration SerializationMethodGeneratorOption
public enum class SerializationMethodGeneratorOption
type SerializationMethodGeneratorOption
Members
| Member name | Value | Description |
---|
| CanDump | 0 |
The generated method IL can be dumped to the current directory.
It is intended for the runtime, you cannot use this option.
|
| CanCollect | 1 |
The entire generated method can be collected by GC when it is no longer used.
|
| Fast | 2 |
Prefer performance. This options is default.
|
See Also