Click or drag to resize
MessagePackObjectFromObject Method
Wraps specified object as MessagePackObject recursively.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
public static MessagePackObject FromObject(
	Object boxedValue
)

Parameters

boxedValue
Type: SystemObject
Object to be wrapped.

Return Value

Type: MessagePackObject
MessagePackObject wrapps boxedValue.
Exceptions
ExceptionCondition
MessageTypeExceptionboxedValue is not primitive value type, list of MessagePackObject, dictionary of MessagePackObject, String, Byte[], or null.
See Also