C# 클래스 Yaml.ParseStream

Stops parsing at specific characters, useful for parsing inline structures like (for instance): [aaa, bbb, ccc, {ddd: eee, "fff": ggg}]
상속: DropTrailingNewline
파일 보기 프로젝트 열기: rs-services/RightGridWindowsImplementation 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
DontStop ( ) : void

Unset the characters where we should stop.

Next ( ) : void

Move to the next character in the parse stream.

Next ( bool dropLastNewLine ) : void

Move to the next character in the parse stream.

ParseStream ( TextReader stream ) : System

Constructor

StartLiteral ( ) : void

Start parsing literal

StopAt ( Array characters ) : void

Set the characters where we should stop.

StopAt ( char characters ) : void

Set the characters where we should stop.

StopLiteral ( ) : void

Stop parsing literal

메소드 상세

DontStop() 공개 메소드

Unset the characters where we should stop.
public DontStop ( ) : void
리턴 void

Next() 공개 메소드

Move to the next character in the parse stream.
public Next ( ) : void
리턴 void

Next() 공개 메소드

Move to the next character in the parse stream.
public Next ( bool dropLastNewLine ) : void
dropLastNewLine bool
리턴 void

ParseStream() 공개 메소드

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

StartLiteral() 공개 메소드

Start parsing literal
public StartLiteral ( ) : void
리턴 void

StopAt() 공개 메소드

Set the characters where we should stop.
public StopAt ( Array characters ) : void
characters Array
리턴 void

StopAt() 공개 메소드

Set the characters where we should stop.
public StopAt ( char characters ) : void
characters char
리턴 void

StopLiteral() 공개 메소드

Stop parsing literal
public StopLiteral ( ) : void
리턴 void