Click or drag to resize
UnpackerReadNullableSingle Method
Reads next nullable Single value from current stream.

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

Parameters

result
Type: SystemNullableSingle

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

Return Value

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