<PackageReference Include="System.Text.Json" Version="5.0.0-preview.1.20120.5" />

JsonTokenType

public enum JsonTokenType
Defines the various JSON tokens that make up a JSON text.
Comment = 6

The token type is a comment string.

The token type is the end of a JSON array.

The token type is the end of a JSON object.

False = 10

The token type is the JSON literal false.

None = 0

There is no value (as distinct from Null).

Null = 11

The token type is the JSON literal null.

Number = 8

The token type is a JSON number.

The token type is a JSON property name.

The token type is the start of a JSON array.

The token type is the start of a JSON object.

String = 7

The token type is a JSON string.

True = 9

The token type is the JSON literal true.