Java.IO.Reader: Method Members

The methods of Java.IO.Reader are listed below. For a list of all members, see the Reader Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

abstract
Close()
Closes this reader.
Mark(int)
Sets a mark position in this reader.
MarkSupported() : bool
Indicates whether this reader supports the mark() and reset() methods.
Read() : int
Reads a single character from this reader and returns it as an integer with the two higher-order bytes set to 0.
Read(Java.Nio.CharBuffer) : int
Reads characters and puts them into the target character buffer.
Read(char[]) : int
Reads characters from this reader and stores them in the character array buffer starting at offset 0.
abstract
Read(char[], int, int) : int
Reads up to count characters from this reader and stores them at offset in the character array buffer.
ReadAsync() : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
ReadAsync(Java.Nio.CharBuffer) : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
ReadAsync(char[]) : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
ReadAsync(char[], int, int) : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
Ready() : bool
Indicates whether this reader is ready to be read without blocking.
Reset()
Resets this reader's position to the last mark() location.
Skip(long) : long
Skips charCount characters in this reader.
SkipAsync(long) : System.Threading.Tasks.Task<long>
Documentation for this section has not yet been entered.