Click or drag to resize
UnpackingUnpackInt16 Method (Byte)
Unpacks Int16 value from the head of specified byte array.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static UnpackingResult<short> UnpackInt16(
	byte[] source
)

Parameters

source
Type: SystemByte
The byte array which contains Message Pack binary stream.

Return Value

Type: UnpackingResultInt16
The UnpackingResultT of Int16 which contains unpacked Int16 value and processed bytes count.
Exceptions
ExceptionCondition
ArgumentNullExceptionsource is null.
ArgumentExceptionsource is empty.
UnpackExceptionsource is not valid MessagePack stream.
MessageTypeException The unpacked result in the source is not compatible to Int16.
Remarks
See Also