Signature.ToChars Method

Definition

Overloads

ToChars()

Encode the Signature as ASCII text.

ToChars(Char[], Int32[])

Encode the Signature as ASCII text in to an existing array.

ToChars()

Encode the Signature as ASCII text.

[Android.Runtime.Register("toChars", "()[C", "GetToCharsHandler")]
public virtual char[]? ToChars ();
[<Android.Runtime.Register("toChars", "()[C", "GetToCharsHandler")>]
abstract member ToChars : unit -> char[]
override this.ToChars : unit -> char[]

Returns

Char[]
Attributes

Remarks

Encode the Signature as ASCII text.

Java documentation for android.content.pm.Signature.toChars().

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

ToChars(Char[], Int32[])

Encode the Signature as ASCII text in to an existing array.

[Android.Runtime.Register("toChars", "([C[I)[C", "GetToChars_arrayCarrayIHandler")]
public virtual char[]? ToChars (char[]? existingArray, int[]? outLen);
[<Android.Runtime.Register("toChars", "([C[I)[C", "GetToChars_arrayCarrayIHandler")>]
abstract member ToChars : char[] * int[] -> char[]
override this.ToChars : char[] * int[] -> char[]

Parameters

existingArray
Char[]

Existing char array or null.

outLen
Int32[]

Output parameter for the number of characters written in to the array.

Returns

Char[]

Returns either <var>existingArray</var> if it was large enough to hold the ASCII representation, or a newly created char[] array if needed.

Attributes

Remarks

Encode the Signature as ASCII text in to an existing array.

Java documentation for android.content.pm.Signature.toChars(char[], 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