ISharedPreferencesEditor.PutStringSet Method

Definition

Set a set of String values in the preferences editor, to be written back once commit() or apply() is called.

[Android.Runtime.Register("putStringSet", "(Ljava/lang/String;Ljava/util/Set;)Landroid/content/SharedPreferences$Editor;", "GetPutStringSet_Ljava_lang_String_Ljava_util_Set_Handler:Android.Content.ISharedPreferencesEditorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Android.Content.ISharedPreferencesEditor? PutStringSet(string? key, System.Collections.Generic.ICollection<string>? values);
[<Android.Runtime.Register("putStringSet", "(Ljava/lang/String;Ljava/util/Set;)Landroid/content/SharedPreferences$Editor;", "GetPutStringSet_Ljava_lang_String_Ljava_util_Set_Handler:Android.Content.ISharedPreferencesEditorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member PutStringSet : string * System.Collections.Generic.ICollection<string> -> Android.Content.ISharedPreferencesEditor

Parameters

key
String

The name of the preference to modify.

values
ICollection<String>

The set of new values for the preference. Passing null for this argument is equivalent to calling remove(String) with this key.

Returns

Returns a reference to the same Editor object, so you can chain put calls together.

Attributes

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.

Java documentation for android.content.SharedPreferences.Editor.putStringSet(java.lang.String, java.util.Set<java.lang.String>).

Applies to