Share via


FilterOutputStream Constructors

Definition

Overloads

FilterOutputStream(Stream)

Creates an output stream filter built on top of the specified underlying output stream.

FilterOutputStream(IntPtr, JniHandleOwnership)

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

FilterOutputStream(Stream)

Creates an output stream filter built on top of the specified underlying output stream.

[Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;)V", "")]
public FilterOutputStream (System.IO.Stream? out);
[<Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;)V", "")>]
new Java.IO.FilterOutputStream : System.IO.Stream -> Java.IO.FilterOutputStream

Parameters

out
Stream

the underlying output stream to be assigned to the field this.out for later use, or null if this instance is to be created without an underlying stream.

Attributes

Remarks

Creates an output stream filter built on top of the specified underlying output stream.

Java documentation for java.io.FilterOutputStream.FilterOutputStream(java.io.OutputStream).

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

FilterOutputStream(IntPtr, JniHandleOwnership)

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

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

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