UnpackingUnpackBoolean Method (Byte, Int32) |
Unpacks the boolean from the specified byte array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static UnpackingResult<bool> UnpackBoolean(
byte[] source,
int offset
)
Public Shared Function UnpackBoolean (
source As Byte(),
offset As Integer
) As UnpackingResult(Of Boolean)
public:
static UnpackingResult<bool> UnpackBoolean(
array<unsigned char>^ source,
int offset
)
static member UnpackBoolean :
source : byte[] *
offset : int -> UnpackingResult<bool>
Parameters
- source
- Type: SystemByte
The byte array which contains Message Pack binary stream. - offset
- Type: SystemInt32
The offset to be unpacking start with.
Return Value
Type:
UnpackingResultBoolean
The
UnpackingResultT of
Boolean which contains unpacked the boolean and processed bytes count.
Exceptions Remarks See Also