CheckedOutputStream Constructors

Definition

Overloads

CheckedOutputStream(IntPtr, JniHandleOwnership)

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

CheckedOutputStream(Stream, IChecksum)

Creates an output stream with the specified Checksum.

CheckedOutputStream(IntPtr, JniHandleOwnership)

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

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

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

CheckedOutputStream(Stream, IChecksum)

Creates an output stream with the specified Checksum.

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

Parameters

out
Stream

the output stream

cksum
IChecksum

the checksum

Attributes

Remarks

Creates an output stream with the specified Checksum.

Java documentation for java.util.zip.CheckedOutputStream.CheckedOutputStream(java.io.OutputStream, java.util.zip.Checksum).

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