CborTag Enum

Definition

Represents a CBOR semantic tag (major type 6).

public enum class CborTag
[System.CLSCompliant(false)]
public enum CborTag
[<System.CLSCompliant(false)>]
type CborTag = 
Public Enum CborTag
Inheritance
Attributes

Fields

Base16StringLaterEncoding 23

Tag value for byte strings, meant for later encoding to a base16 string representation.

Base64 34

Tag value for base64-encoded text strings, as defined in RFC4648.

Base64StringLaterEncoding 22

Tag value for byte strings, meant for later encoding to a base64 string representation.

Base64Url 33

Tag value for base64url-encoded text strings, as defined in RFC4648.

Base64UrlLaterEncoding 21

Tag value for byte strings, meant for later encoding to a base64url string representation.

BigFloat 5

Tag value for big float encodings.

DateTimeString 0

Tag value for RFC3339 date/time strings.

DecimalFraction 4

Tag value for decimal fraction encodings.

EncodedCborDataItem 24

Tag value for byte strings containing embedded CBOR data item encodings.

MimeMessage 36

Tag value for MIME messages (including all headers), as defined in RFC2045.

NegativeBigNum 3

Tag value for negative bignum encodings.

Regex 35

Tag value for regular expressions in Perl Compatible Regular Expressions / Javascript syntax.

SelfDescribeCbor 55799

Tag value for the Self-Describe CBOR header (0xd9d9f7).

UnixTimeSeconds 1

Tag value for Epoch-based date/time strings.

UnsignedBigNum 2

Tag value for unsigned bignum encodings.

Uri 32

Tag value for Uri strings, as defined in RFC3986.

Applies to