Indicates that the next CBOR data item encodes a boolean value (major type 7).
Indicates that the next CBOR data item is a byte string (major type 2).
Indicates that the next CBOR data item is an IEEE 754 Double-Precision float (major type 7).
Indicates that the reader is at the end of an array (major type 4).
Indicates that the reader is at the end of an indefinite-length byte string (major type 2).
Indicates that the reader is at the end of an indefinite-length UTF-8 text string (major type 3).
Indicates that the reader is at the end of a map (major type 5).
Indicates that the reader has completed reading a full CBOR document.
Indicates that the next CBOR data item is an IEEE 754 Half-Precision float (major type 7).
Indicates that the next CBOR data item is a negative integer (major type 1).
Indicates that the next CBOR data item is a null literal (major type 7).
Indicates that the next CBOR data item is a simple value (major type 7).
Indicates that the next CBOR data item is an IEEE 754 Single-Precision float (major type 7).
Indicates that the next CBOR data item denotes the start of an array (major type 4).
Indicates that the next CBOR data item denotes the start of an indefinite-length byte string (major type 2).
Indicates that the next CBOR data item denotes the start of an indefinite-length UTF-8 text string (major type 3).
Indicates that the next CBOR data item denotes the start of a map (major type 5).
Indicates that the next CBOR data item is a semantic tag (major type 6).
Indicates that the next CBOR data item is a UTF-8 string (major type 3).
Indicates the undefined state. The reader has not yet processed any CBOR data.
Indicates that the next CBOR data item is an unsigned integer (major type 0).
Specifies the state of a
CborReaderinstance.