Click or drag to resize
IMessagePackSerializer Interface
Defines non-generic message pack serializer interface.

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public interface IMessagePackSerializer

The IMessagePackSerializer type exposes the following members.

Methods
  NameDescription
Public methodPackTo
Serialize specified object with specified Packer.
Public methodUnpackFrom
Deserialize object with specified Unpacker.
Public methodUnpackTo
Deserialize collection items with specified Unpacker and stores them to collection.
Top
Extension Methods
  NameDescription
Public Extension MethodPack(Stream, Object)Overloaded.
Serializes specified object to the Stream with default PackerCompatibilityOptions.
(Defined by MessagePackSerializerExtensions.)
Public Extension MethodPack(Stream, Object, PackerCompatibilityOptions)Overloaded.
Serializes specified object to the Stream.
(Defined by MessagePackSerializerExtensions.)
Public Extension MethodUnpack
Deserialize object from the Stream.
(Defined by MessagePackSerializerExtensions.)
Top
See Also