C# 클래스 Microsoft.Fast.AST.Scanner.BuildBuffer

상속: ScanBuff
파일 보기 프로젝트 열기: AutomataDotNet/Automata

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
BuildBuffer ( Stream stream ) : System
BuildBuffer ( Stream stream, int fallbackCodePage ) : System
GetString ( int begin, int limit ) : string
Mark ( ) : void

Marks a conservative lower bound for the buffer, allowing space to be reclaimed. If an application needs to call GetString at arbitrary past locations in the input stream, Mark() is not called.

Read ( ) : int

Read returns the ordinal number of the next char, or EOF (-1) for an end of stream. Note that the next code point may require *two* calls of Read().

ToString ( ) : string

메소드 상세

BuildBuffer() 공개 메소드

public BuildBuffer ( Stream stream ) : System
stream Stream
리턴 System

BuildBuffer() 공개 메소드

public BuildBuffer ( Stream stream, int fallbackCodePage ) : System
stream Stream
fallbackCodePage int
리턴 System

GetString() 공개 메소드

public GetString ( int begin, int limit ) : string
begin int
limit int
리턴 string

Mark() 공개 메소드

Marks a conservative lower bound for the buffer, allowing space to be reclaimed. If an application needs to call GetString at arbitrary past locations in the input stream, Mark() is not called.
public Mark ( ) : void
리턴 void

Read() 공개 메소드

Read returns the ordinal number of the next char, or EOF (-1) for an end of stream. Note that the next code point may require *two* calls of Read().
public Read ( ) : int
리턴 int

ToString() 공개 메소드

public ToString ( ) : string
리턴 string