C# 클래스 Yaml.IndentationProcessor

The indentation processor, This class divides the stream from the preprocessor in substreams, according to the current level of indentation.
상속: Preprocessor
파일 보기 프로젝트 열기: rs-services/RightGridWindowsImplementation

공개 메소드들

메소드 설명
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

메소드 상세

Indent() 공개 메소드

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
리턴 void

IndentationProcessor() 공개 메소드

Constructor
public IndentationProcessor ( TextReader stream ) : System
stream TextReader
리턴 System

Next() 공개 메소드

Go to the next parsable char in the stream
public Next ( ) : void
리턴 void

UnIndent() 공개 메소드

Cancel the last indentation
public UnIndent ( ) : void
리턴 void