Freigeben über


Base64InputStream Constructors

Definition

Overloads

Base64InputStream(IntPtr, JniHandleOwnership)

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

Base64InputStream(Stream, Base64Flags)

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

Base64InputStream(Stream, Int32)

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

Base64InputStream(IntPtr, JniHandleOwnership)

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

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

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

Base64InputStream(Stream, Base64Flags)

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

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

Parameters

in
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

Base64InputStream(Stream, Int32)

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

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

Parameters

in
Stream

the InputStream to read the source data from

flags
Int32

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

Attributes

Remarks

An InputStream that performs Base64 decoding on the data read from the wrapped stream.

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