Click or drag to resize
SerializationExceptionsNewUnexpectedArrayLength Method
This is intended to MsgPack for CLI internal use. Do not use this type from application directly. Returns new exception to notify that the unpacking array size is not expected length.

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static Exception NewUnexpectedArrayLength(
	int expectedLength,
	int actualLength
)

Parameters

expectedLength
Type: SystemInt32
Expected, required for deserialization array length.
actualLength
Type: SystemInt32
Actual array length.

Return Value

Type: Exception
Exception instance. It will not be null.
See Also