InflaterOutputStream Constructors

Definition

Overloads

InflaterOutputStream(Stream)

Creates a new output stream with a default decompressor and buffer size.

InflaterOutputStream(IntPtr, JniHandleOwnership)

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

InflaterOutputStream(Stream, Inflater)

Creates a new output stream with the specified decompressor and a default buffer size.

InflaterOutputStream(Stream, Inflater, Int32)

Creates a new output stream with the specified decompressor and buffer size.

InflaterOutputStream(Stream)

Creates a new output stream with a default decompressor and buffer size.

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

Parameters

out
Stream

output stream to write the uncompressed data to

Attributes

Remarks

Creates a new output stream with a default decompressor and buffer size.

Java documentation for java.util.zip.InflaterOutputStream.InflaterOutputStream(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

InflaterOutputStream(IntPtr, JniHandleOwnership)

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

protected InflaterOutputStream (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Zip.InflaterOutputStream : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Zip.InflaterOutputStream

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

InflaterOutputStream(Stream, Inflater)

Creates a new output stream with the specified decompressor and a default buffer size.

[Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;)V", "")]
public InflaterOutputStream (System.IO.Stream? out, Java.Util.Zip.Inflater? infl);
[<Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;)V", "")>]
new Java.Util.Zip.InflaterOutputStream : System.IO.Stream * Java.Util.Zip.Inflater -> Java.Util.Zip.InflaterOutputStream

Parameters

out
Stream

output stream to write the uncompressed data to

infl
Inflater

decompressor ("inflater") for this stream

Attributes

Remarks

Creates a new output stream with the specified decompressor and a default buffer size.

Java documentation for java.util.zip.InflaterOutputStream.InflaterOutputStream(java.io.OutputStream, java.util.zip.Inflater).

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

InflaterOutputStream(Stream, Inflater, Int32)

Creates a new output stream with the specified decompressor and buffer size.

[Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;I)V", "")]
public InflaterOutputStream (System.IO.Stream? out, Java.Util.Zip.Inflater? infl, int bufLen);
[<Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;I)V", "")>]
new Java.Util.Zip.InflaterOutputStream : System.IO.Stream * Java.Util.Zip.Inflater * int -> Java.Util.Zip.InflaterOutputStream

Parameters

out
Stream

output stream to write the uncompressed data to

infl
Inflater

decompressor ("inflater") for this stream

bufLen
Int32

decompression buffer size

Attributes

Remarks

Creates a new output stream with the specified decompressor and buffer size.

Java documentation for java.util.zip.InflaterOutputStream.InflaterOutputStream(java.io.OutputStream, java.util.zip.Inflater, int).

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