Click or drag to resize
ICollectionInstanceFactory Interface
Defines common interface for serializers which can genereate new empty instance.

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

The ICollectionInstanceFactory type exposes the following members.

Methods
  NameDescription
Public methodCreateInstance
Creates a new collection instance with specified initial capacity.
Top
Remarks
All custom manually implemented or automatically generated serializers which treat collection (that is, they return objects implementing IEnumerable except few exceptions like String).
See Also