CheckedInputStream Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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.
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.