Click or drag to resize
EnumMessagePackSerializerTEnumUnpackFromUnderlyingValue Method
Unpacks enum value from underlying integral value.

Namespace: MsgPack.Serialization
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
protected abstract TEnum UnpackFromUnderlyingValue(
	MessagePackObject messagePackObject
)

Parameters

messagePackObject
Type: MsgPackMessagePackObject
The message pack object which represents some integral value.

Return Value

Type: TEnum
An enum value.
Exceptions
ExceptionCondition
SerializationExceptionThe type of integral value is not compatible with underlying type of the enum.
See Also