Click or drag to resize
MessagePackObject Constructor (Byte)
Initializes a new instance of the Byte[] type which wraps Byte[] instance with specified manner.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public MessagePackObject(
	byte[] value
)

Parameters

value
Type: SystemByte
A bytes array to be wrapped.
Remarks
This constructor invokes MessagePackObject(Byte, Boolean) with false, that means if you pass tha bytes array which is valid utf-8, resulting object can be String, and its UnderlyingType should be String.
See Also