Click or drag to resize
UnpackerReadNullableBoolean Method
Reads next nullable Boolean value from current stream.

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

Parameters

result
Type: SystemNullableBoolean

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

Return Value

Type: Boolean
The nullable Boolean 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 Boolean type.
See Also