UnpackHelpersUnpackCollectionTo Method (Unpacker, IEnumerable, ActionObject) |
Note: This API is now obsolete.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")]
public static void UnpackCollectionTo(
Unpacker unpacker,
IEnumerable collection,
Action<Object> addition
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")>
Public Shared Sub UnpackCollectionTo (
unpacker As Unpacker,
collection As IEnumerable,
addition As Action(Of Object)
)
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"This API is not used at generated serializers in current release, so this API will be removed future.")]
static void UnpackCollectionTo(
Unpacker^ unpacker,
IEnumerable^ collection,
Action<Object^>^ addition
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")>]
static member UnpackCollectionTo :
unpacker : Unpacker *
collection : IEnumerable *
addition : Action<Object> -> unit
Parameters
- unpacker
- Type: MsgPackUnpacker
The unpacker to unpack the underlying stream. - collection
- Type: System.CollectionsIEnumerable
The non-generic collection instance to be added unpacked elements. - addition
- Type: SystemActionObject
The delegate which contains the instance method of the collection. The parameter is unpacked object.
Exceptions See Also