UnpackerReadNullableBoolean Method |
Reads next nullable
Boolean value from current stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
public virtual bool ReadNullableBoolean(
out Nullable<bool> result
)
<CLSCompliantAttribute(false)>
Public Overridable Function ReadNullableBoolean (
<OutAttribute> ByRef result As Nullable(Of Boolean)
) As Boolean
public:
[CLSCompliantAttribute(false)]
virtual bool ReadNullableBoolean(
[OutAttribute] Nullable<bool>% result
)
[<CLSCompliantAttribute(false)>]
abstract ReadNullableBoolean :
result : Nullable<bool> byref -> bool
[<CLSCompliantAttribute(false)>]
override ReadNullableBoolean :
result : Nullable<bool> byref -> bool
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 See Also