Android.Util.Base64: Method Members

The methods of Android.Util.Base64 are listed below. For a list of all members, see the Base64 Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
Decode(byte[], Base64Flags) : byte[]
Decode the Base64-encoded data in input and return the data in a new byte array.
static
Decode(string, Base64Flags) : byte[]
Decode the Base64-encoded data in input and return the data in a new byte array.
static
Decode(byte[], int, int, Base64Flags) : byte[]
Decode the Base64-encoded data in input and return the data in a new byte array.
static
Encode(byte[], Base64Flags) : byte[]
Base64-encode the given data and return a newly allocated byte[] with the result.
static
Encode(byte[], int, int, Base64Flags) : byte[]
Base64-encode the given data and return a newly allocated byte[] with the result.
static
EncodeToString(byte[], Base64Flags) : string
Base64-encode the given data and return a newly allocated String with the result.
static
EncodeToString(byte[], int, int, Base64Flags) : string
Base64-encode the given data and return a newly allocated String with the result.