UnpackHelpersUnpackArrayToT Method |
Note: This API is now obsolete.
Unpacks the array to the specified array.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static void UnpackArrayTo<T>(
Unpacker unpacker,
MessagePackSerializer<T> serializer,
T[] array
)
<ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Sub UnpackArrayTo(Of T) (
unpacker As Unpacker,
serializer As MessagePackSerializer(Of T),
array As T()
)
public:
[ObsoleteAttribute(L"This API is not used at generated serializers in current release, so this API will be removed future.")]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
generic<typename T>
static void UnpackArrayTo(
Unpacker^ unpacker,
MessagePackSerializer<T>^ serializer,
array<T>^ array
)
[<ObsoleteAttribute("This API is not used at generated serializers in current release, so this API will be removed future.")>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member UnpackArrayTo :
unpacker : Unpacker *
serializer : MessagePackSerializer<'T> *
array : 'T[] -> unit
Parameters
- unpacker
- Type: MsgPackUnpacker
The unpacker to unpack the underlying stream. - serializer
- Type: MsgPack.SerializationMessagePackSerializerT
The serializer to deserialize array. - array
- Type: T
The array instance to be filled.
Type Parameters
- T
- The type of the array element.
Exceptions See Also