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