UnpackingUnpackInt32 Method (Byte, Int32) |
Unpacks
Int32 value from the specified byte array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static UnpackingResult<int> UnpackInt32(
byte[] source,
int offset
)
Public Shared Function UnpackInt32 (
source As Byte(),
offset As Integer
) As UnpackingResult(Of Integer)
public:
static UnpackingResult<int> UnpackInt32(
array<unsigned char>^ source,
int offset
)
static member UnpackInt32 :
source : byte[] *
offset : int -> UnpackingResult<int>
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:
UnpackingResultInt32
The
UnpackingResultT of
Int32 which contains unpacked
Int32 value and processed bytes count.
Exceptions Remarks See Also