Bundle.PutCharSequenceArray Method

Definition

Overloads

PutCharSequenceArray(String, ICharSequence[])

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key.

PutCharSequenceArray(String, String[])

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key.

PutCharSequenceArray(String, ICharSequence[])

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key.

[Android.Runtime.Register("putCharSequenceArray", "(Ljava/lang/String;[Ljava/lang/CharSequence;)V", "")]
public void PutCharSequenceArray (string? key, Java.Lang.ICharSequence[]? value);
[<Android.Runtime.Register("putCharSequenceArray", "(Ljava/lang/String;[Ljava/lang/CharSequence;)V", "")>]
member this.PutCharSequenceArray : string * Java.Lang.ICharSequence[] -> unit

Parameters

key
String

a String, or null

value
ICharSequence[]

a CharSequence array object, or null

Attributes

Remarks

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key. Either key or value may be null.

Java documentation for android.os.Bundle.putCharSequenceArray(java.lang.String, java.lang.CharSequence[]).

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

PutCharSequenceArray(String, String[])

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key.

public void PutCharSequenceArray (string? key, string[]? value);
member this.PutCharSequenceArray : string * string[] -> unit

Parameters

key
String

a String, or null

value
String[]

a CharSequence array object, or null

Remarks

Inserts a CharSequence array value into the mapping of this Bundle, replacing any existing value for the given key. Either key or value may be null.

Java documentation for android.os.Bundle.putCharSequenceArray(java.lang.String, java.lang.CharSequence[]).

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