ICollectionInstanceFactory Interface |
Defines common interface for serializers which can genereate new empty instance.
Namespace: MsgPack.Serialization.CollectionSerializersAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public interface ICollectionInstanceFactory
Public Interface ICollectionInstanceFactory
public interface class ICollectionInstanceFactory
type ICollectionInstanceFactory = interface end
The ICollectionInstanceFactory type exposes the following members.
Methods
| Name | Description |
---|
| CreateInstance |
Creates a new collection instance with specified initial capacity.
|
TopRemarks
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