C# Класс Microsoft.Fast.AST.Scanner.BuildBuffer

Наследование: ScanBuff
Показать файл Открыть проект

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