Enumeration CborSimpleValue

Enum representing CBOR simple values (major type 7). These are simple, predefined constants in the CBOR encoding.

Enumeration Members

Enumeration Members

False: 20

CBOR simple value representing the boolean value false.

In CBOR, the value false is encoded as a simple value with the major type 7 and additional information 20.

Null: 22

CBOR simple value representing null.

In CBOR, the value null is encoded as a simple value with the major type 7 and additional information 22.

True: 21

CBOR simple value representing the boolean value true.

In CBOR, the value true is encoded as a simple value with the major type 7 and additional information 21.

Undefined: 23

CBOR simple value representing undefined.

This value can be used by an encoder to substitute a data item with an encoding problem. In CBOR, the value undefined is encoded as a simple value with the major type 7 and additional information 23.