CheckedOutputStream 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
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
- 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.
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.