Java.IO.InputStream: Method Members

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

See Also: Inherited members from Java.Lang.Object

Public Methods

Available() : int
Returns an estimated number of bytes that can be read or skipped without blocking for more input.
Close()
Closes this stream.
Mark(int)
Sets a mark position in this InputStream.
MarkSupported() : bool
Indicates whether this stream supports the mark() and reset() methods.
abstract
Read() : int
Reads a single byte from this stream and returns it as an integer in the range from 0 to 255.
Read(byte[]) : int
Equivalent to read(buffer, 0, buffer.length).
Read(byte[], int, int) : int
Reads up to byteCount bytes from this stream and stores them in the byte array buffer starting at byteOffset.
ReadAsync() : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
ReadAsync(byte[]) : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
ReadAsync(byte[], int, int) : System.Threading.Tasks.Task<int>
Documentation for this section has not yet been entered.
Reset()
Resets this stream to the last marked location.
Skip(long) : long
Skips at most byteCount bytes in this stream.
SkipAsync(long) : System.Threading.Tasks.Task<long>
Documentation for this section has not yet been entered.