SerializationExceptionsNewMissingItem Method |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly.
Returns new exception to notify that item is not found on the unpacking stream.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static Exception NewMissingItem(
int index
)
Public Shared Function NewMissingItem (
index As Integer
) As Exception
public:
static Exception^ NewMissingItem(
int index
)
static member NewMissingItem :
index : int -> Exception
Parameters
- index
- Type: SystemInt32
The index to be unpacking.
Return Value
Type:
ExceptionException instance. It will not be
null.
See Also