C# Class Yaml.Preprocessor

The Preprocessor class Given a character stream, this class will walk through that stream. NOTE: Comments are not longer skipped at this level, but now in the last level instead. (because of problems with comments within the buffer) NOTE: Null characters are skipped, read nulls should be escaped. \0
Exibir arquivo Open project: rs-services/RightGridWindowsImplementation

Public Methods

Method Description
Next ( ) : void

Jump to the next character

Preprocessor ( TextReader stream ) : System

Constuctor

StartLiteral ( ) : void

Start parsing literal

StopLiteral ( ) : void

Stop parsing literal

Method Details

Next() public method

Jump to the next character
public Next ( ) : void
return void

Preprocessor() public method

Constuctor
public Preprocessor ( TextReader stream ) : System
stream System.IO.TextReader
return System

StartLiteral() public method

Start parsing literal
public StartLiteral ( ) : void
return void

StopLiteral() public method

Stop parsing literal
public StopLiteral ( ) : void
return void