Base64OutputStream Constructors

Definition

Overloads

Base64OutputStream(IntPtr, JniHandleOwnership)

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

Base64OutputStream(Stream, Base64Flags)

Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.

Base64OutputStream(Stream, Int32)

Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.

Base64OutputStream(IntPtr, JniHandleOwnership)

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

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

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

Base64OutputStream(Stream, Base64Flags)

Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.

public Base64OutputStream (System.IO.Stream out, Android.Util.Base64Flags flags);
new Android.Util.Base64OutputStream : System.IO.Stream * Android.Util.Base64Flags -> Android.Util.Base64OutputStream

Parameters

out
Stream
flags
Base64Flags

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

Base64OutputStream(Stream, Int32)

Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.

[Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;I)V", "")]
public Base64OutputStream (System.IO.Stream? out, int flags);
[<Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;I)V", "")>]
new Android.Util.Base64OutputStream : System.IO.Stream * int -> Android.Util.Base64OutputStream

Parameters

out
Stream

the OutputStream to write the encoded data to

flags
Int32

bit flags for controlling the encoder; see the constants in Base64

Attributes

Remarks

Performs Base64 encoding on the data written to the stream, writing the encoded data to another OutputStream.

Java documentation for android.util.Base64OutputStream.Base64OutputStream(java.io.OutputStream, 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