JSONLexer ClassNFX Class Library

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

Performs lexical analysis on source supplied in JSON syntax. This class supports lazy analysis that happens gradually as result tokens are consumed through IEnumerable interface. 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
Inheritance Hierarchy

OnlineSystem Object
  NFX.CodeAnalysis CommonCodeProcessor
    NFX.CodeAnalysis SourceRefCommonCodeProcessor
      NFX.CodeAnalysis Lexer JSONToken 
        NFX.CodeAnalysis.JSON JSONLexer

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

public sealed class JSONLexer : Lexer<JSONToken>
See Also