Share via


FilterInputStream Constructors

Definition

Overloads

FilterInputStream(Stream)

Creates a FilterInputStream by assigning the argument in to the field this.in so as to remember it for later use.

FilterInputStream(IntPtr, JniHandleOwnership)

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

FilterInputStream(Stream)

Creates a FilterInputStream by assigning the argument in to the field this.in so as to remember it for later use.

[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")]
protected FilterInputStream (System.IO.Stream? in);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")>]
new Java.IO.FilterInputStream : System.IO.Stream -> Java.IO.FilterInputStream

Parameters

in
Stream

the underlying input stream, or null if this instance is to be created without an underlying stream.

Attributes

Remarks

Creates a FilterInputStream by assigning the argument in to the field this.in so as to remember it for later use.

Java documentation for java.io.FilterInputStream.FilterInputStream(java.io.InputStream).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

FilterInputStream(IntPtr, JniHandleOwnership)

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

protected FilterInputStream (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.IO.FilterInputStream : nativeint * Android.Runtime.JniHandleOwnership -> Java.IO.FilterInputStream

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to