JSONTokenType EnumerationNFX Class Library

[This is preliminary documentation and is subject to change.]

Denotes JSON token types. NOTE: Although called JSON, this is really a JSON superset implementation that includes extra features: comments, directives, verbatim strings(start with $), ' or " string escapes, unquoted object key names

Namespace: NFX.CodeAnalysis.JSON
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public enum JSONTokenType
Members

  Member nameValueDescription
tUnknown0
NONLANG_START1
tBOF2
tEOF3
tDirective4
NONLANG_END5
tComment6
SYMBOLS_START7
tComma8
tBraceOpen9
tBraceClose10
tSqBracketOpen11
tSqBracketClose12
tDot13
SYMBOLS_END14
tIdentifier15
tPlus16
tMinus17
tColon18
LITERALS_START19
NUMLITERALS_START20
tIntLiteral21
tLongIntLiteral22
tDoubleLiteral23
NUMLITERALS_END24
tStringLiteral25
tTrue26
tFalse27
tNull28
LITERALS_END29
See Also