UnpackerReadUInt64 Method |
Reads next
UInt64 value from current stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
public virtual bool ReadUInt64(
out ulong result
)
<CLSCompliantAttribute(false)>
Public Overridable Function ReadUInt64 (
<OutAttribute> ByRef result As ULong
) As Boolean
public:
[CLSCompliantAttribute(false)]
virtual bool ReadUInt64(
[OutAttribute] unsigned long long% result
)
[<CLSCompliantAttribute(false)>]
abstract ReadUInt64 :
result : uint64 byref -> bool
[<CLSCompliantAttribute(false)>]
override ReadUInt64 :
result : uint64 byref -> bool
Parameters
- result
- Type: SystemUInt64
The UInt64 value read from current stream to be stored when operation is succeeded.
Return Value
Type:
Booleantrue if expected value was read from stream;
false if no more data on the stream.
Note that this method throws exception for unexpected state. See exceptions section.
Exceptions See Also