Click or drag to resize
UnpackerReadNullableUInt32 Method
Reads next nullable UInt32 value from current stream.

Namespace: MsgPack
Assembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax
[CLSCompliantAttribute(false)]
public virtual bool ReadNullableUInt32(
	out Nullable<uint> result
)

Parameters

result
Type: SystemNullableUInt32

[Missing <param name="result"/> documentation for "M:MsgPack.Unpacker.ReadNullableUInt32(System.Nullable{System.UInt32}@)"]

Return Value

Type: Boolean
The nullable UInt32 value read from current data source successfully.
Exceptions
ExceptionCondition
InvalidMessagePackStreamException Cannot read a value because the underlying stream unexpectedly ends.
MessageTypeException A value read from data source is not compatible for the nullable UInt32 type.
See Also