UnpackerReadNullableByte Method |
Reads next nullable
Byte value from current stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
public virtual bool ReadNullableByte(
out Nullable<byte> result
)
<CLSCompliantAttribute(false)>
Public Overridable Function ReadNullableByte (
<OutAttribute> ByRef result As Nullable(Of Byte)
) As Boolean
public:
[CLSCompliantAttribute(false)]
virtual bool ReadNullableByte(
[OutAttribute] Nullable<unsigned char>% result
)
[<CLSCompliantAttribute(false)>]
abstract ReadNullableByte :
result : Nullable<byte> byref -> bool
[<CLSCompliantAttribute(false)>]
override ReadNullableByte :
result : Nullable<byte> byref -> bool
Parameters
- result
- Type: SystemNullableByte
[Missing <param name="result"/> documentation for "M:MsgPack.Unpacker.ReadNullableByte(System.Nullable{System.Byte}@)"]
Return Value
Type:
Boolean
The nullable
Byte value read from current data source successfully.
Exceptions See Also