Click or drag to resize
EnumerableMessagePackSerializerTCollection, TItem Class
Inheritance Hierarchy
SystemObject
  MsgPack.SerializationMessagePackSerializerTCollection
    MsgPack.Serialization.CollectionSerializersEnumerableMessagePackSerializerBaseTCollection, TItem
      MsgPack.Serialization.CollectionSerializersEnumerableMessagePackSerializerTCollection, TItem

Namespace: MsgPack.Serialization.CollectionSerializers
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public abstract class EnumerableMessagePackSerializer<TCollection, TItem> : EnumerableMessagePackSerializerBase<TCollection, TItem>
where TCollection : Object, IEnumerable<TItem>

Type Parameters

TCollection
The type of the collection.
TItem
The type of the item of collection.

The EnumerableMessagePackSerializerTCollection, TItem type exposes the following members.

Constructors
  NameDescription
Protected methodEnumerableMessagePackSerializerTCollection, TItem
Initializes a new instance of the EnumerableMessagePackSerializerTCollection, TItem class.
Top
Properties
Methods
  NameDescription
Protected methodAddItem
When implemented by derive class, adds the deserialized item to the collection on TCollection specific manner to implement UnpackToCore(Unpacker, TCollection).
(Inherited from EnumerableMessagePackSerializerBaseTCollection, TItem.)
Protected methodCreateInstance
Creates a new collection instance with specified initial capacity.
(Inherited from EnumerableMessagePackSerializerBaseTCollection, TItem.)
Public methodPack
Serializes specified object to the Stream.
(Inherited from MessagePackSerializerT.)
Public methodPackSingleObject
Serializes specified object to the array of Byte.
(Inherited from MessagePackSerializerT.)
Public methodPackTo
Serializes specified object with specified Packer.
(Inherited from MessagePackSerializerT.)
Protected methodPackToCore
Serializes specified object with specified Packer.
(Overrides MessagePackSerializerTPackToCore(Packer, T).)
Public methodUnpack
Deserialize object from the Stream.
(Inherited from MessagePackSerializerT.)
Public methodUnpackFrom
Deserializes object with specified Unpacker.
(Inherited from MessagePackSerializerT.)
Protected methodUnpackFromCore
Deserializes object with specified Unpacker.
(Inherited from MessagePackSerializerT.)
Protected methodUnpackNil
Unpacks the nil value.
(Inherited from MessagePackSerializerT.)
Public methodUnpackSingleObject
Deserializes a single object from the array of Byte which contains a serialized object.
(Inherited from MessagePackSerializerT.)
Public methodUnpackTo
Deserializes collection items with specified Unpacker and stores them to collection.
(Inherited from MessagePackSerializerT.)
Protected methodUnpackToCore
Deserializes collection items with specified Unpacker and stores them to collection.
(Inherited from EnumerableMessagePackSerializerBaseTCollection, TItem.)
Top
See Also