C# Class Yaml.IndentationProcessor

The indentation processor, This class divides the stream from the preprocessor in substreams, according to the current level of indentation.
Inheritance: Preprocessor
Afficher le fichier Open project: rs-services/RightGridWindowsImplementation

Méthodes publiques

Méthode Description
Indent ( ) : void

Request an indentation. When we meet a \n and the following line is more indented then the current indentationlever, then save this request

IndentationProcessor ( TextReader stream ) : System

Constructor

Next ( ) : void

Go to the next parsable char in the stream

UnIndent ( ) : void

Cancel the last indentation

Method Details

Indent() public méthode

Request an indentation. When we meet a \n and the following line is more indented then the current indentationlever, then save this request
public Indent ( ) : void
Résultat void

IndentationProcessor() public méthode

Constructor
public IndentationProcessor ( TextReader stream ) : System
stream TextReader
Résultat System

Next() public méthode

Go to the next parsable char in the stream
public Next ( ) : void
Résultat void

UnIndent() public méthode

Cancel the last indentation
public UnIndent ( ) : void
Résultat void