Property | Type | Description |
---|
Method | 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 |
public BuildBuffer ( Stream stream ) : System | ||
stream | Stream | |
return | System |
public BuildBuffer ( Stream stream, int fallbackCodePage ) : System | ||
stream | Stream | |
fallbackCodePage | int | |
return | System |
public GetString ( int begin, int limit ) : string | ||
begin | int | |
limit | int | |
return | string |