Click or drag to resize
UnpackerReadNullableDouble Method
Reads next nullable Double value from current stream.

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

Parameters

result
Type: SystemNullableDouble

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

Return Value

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