UnpackHelpersGetItemsCount Method |
Gets the items count as
Int32.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static int GetItemsCount(
Unpacker unpacker
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Shared Function GetItemsCount (
unpacker As Unpacker
) As Integer
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
static int GetItemsCount(
Unpacker^ unpacker
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
static member GetItemsCount :
unpacker : Unpacker -> int
Parameters
- unpacker
- Type: MsgPackUnpacker
The unpacker.
Return Value
Type:
Int32The items count as
Int32.
Exceptions Remarks
The items count of the collection can be between
MaxValue and
MaxValue,
but most collections do not support so big count.
See Also