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

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
[CLSCompliantAttribute(false)]
public static UnpackingResult<uint> UnpackUInt32(
	byte[] source
)

Parameters

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

Return Value

Type: UnpackingResultUInt32
The UnpackingResultT of UInt32 which contains unpacked UInt32 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 UInt32.
Remarks
See Also