UnpackHelpersUnpackMapTo Method (Unpacker, IDictionary) |
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 UnpackMapTo(
Unpacker unpacker,
IDictionary dictionary
)
<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 UnpackMapTo (
unpacker As Unpacker,
dictionary As IDictionary
)
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 UnpackMapTo(
Unpacker^ unpacker,
IDictionary^ dictionary
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")>]
static member UnpackMapTo :
unpacker : Unpacker *
dictionary : IDictionary -> unit
Parameters
- unpacker
- Type: MsgPackUnpacker
The unpacker to unpack the underlying stream. - dictionary
- Type: System.CollectionsIDictionary
The non-generic dictionary instance to be added unpacked elements.
Exceptions See Also