Java.IO.InputStream Members

The members of Java.IO.InputStream are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

This constructor does nothing.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

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.