Share via


CheckedInputStream Constructors

Definition

Overloads

CheckedInputStream(IntPtr, JniHandleOwnership)

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

CheckedInputStream(Stream, IChecksum)

Creates an input stream using the specified Checksum.

CheckedInputStream(IntPtr, JniHandleOwnership)

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

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

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

CheckedInputStream(Stream, IChecksum)

Creates an input stream using the specified Checksum.

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

Parameters

in
Stream

the input stream

cksum
IChecksum

the Checksum

Attributes

Remarks

Creates an input stream using the specified Checksum.

Java documentation for java.util.zip.CheckedInputStream.CheckedInputStream(java.io.InputStream, 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