C# Class Microsoft.Fast.AST.Scanner.BuildBuffer

Inheritance: ScanBuff
Afficher le fichier Open project: AutomataDotNet/Automata

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
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

Method Details

BuildBuffer() public méthode

public BuildBuffer ( Stream stream ) : System
stream Stream
Résultat System

BuildBuffer() public méthode

public BuildBuffer ( Stream stream, int fallbackCodePage ) : System
stream Stream
fallbackCodePage int
Résultat System

GetString() public méthode

public GetString ( int begin, int limit ) : string
begin int
limit int
Résultat string

Mark() public méthode

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
Résultat void

Read() public méthode

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
Résultat int

ToString() public méthode

public ToString ( ) : string
Résultat string