UnpackerReadMapLength Method |
Reads next map length value from current stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public virtual bool ReadMapLength(
out long result
)
Public Overridable Function ReadMapLength (
<OutAttribute> ByRef result As Long
) As Boolean
public:
virtual bool ReadMapLength(
[OutAttribute] long long% result
)
abstract ReadMapLength :
result : int64 byref -> bool
override ReadMapLength :
result : int64 byref -> bool
Parameters
- result
- Type: SystemInt64
The map length 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