SerializationMethod Enumeration |
Represents serialization method for complex types.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public enum SerializationMethod
Public Enumeration SerializationMethod
public enum class SerializationMethod
Members
| Member name | Value | Description |
---|
| Array | 0 |
The object will be serialized as array which is ordered by member ID.
This is default and more interoperable option.
|
| Map | 1 |
The object will be serialized as map which is ordered by member ID.
This is a bit slower than array, but more stable for forward/backward compatibility.
|
See Also