Click or drag to resize
UnpackHelpersInvokeUnpackFromT Method

Note: This API is now obsolete.

Invokes UnpackFromCore(Unpacker) FAMANDASM method directly.

Namespace: MsgPack.Serialization
Assembly: 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 T InvokeUnpackFrom<T>(
	MessagePackSerializer<T> serializer,
	Unpacker unpacker
)

Parameters

serializer
Type: MsgPack.SerializationMessagePackSerializerT
The invocation target MessagePackSerializerT.
unpacker
Type: MsgPackUnpacker
The unpacker to be passed to the method.

Type Parameters

T
The type of deserializing object.

Return Value

Type: T
A deserialized value.
See Also