Android.Content.ISharedPreferencesEditor Members

The members of Android.Content.ISharedPreferencesEditor are listed below.

Public Methods

Apply()
Commit your preferences changes back from this Editor to the Android.Content.ISharedPreferences object it is editing.
Clear() : ISharedPreferencesEditor
Mark in the editor to remove all values from the preferences.
Commit() : bool
Commit your preferences changes back from this Editor to the Android.Content.ISharedPreferences object it is editing.
PutBoolean(string, bool) : ISharedPreferencesEditor
Set a boolean value in the preferences editor, to be written back once ISharedPreferencesEditor.Commit or ISharedPreferencesEditor.Apply are called.
PutFloat(string, float) : ISharedPreferencesEditor
Set a float value in the preferences editor, to be written back once ISharedPreferencesEditor.Commit or ISharedPreferencesEditor.Apply are called.
PutInt(string, int) : ISharedPreferencesEditor
Set an int value in the preferences editor, to be written back once ISharedPreferencesEditor.Commit or ISharedPreferencesEditor.Apply are called.
PutLong(string, long) : ISharedPreferencesEditor
Set a long value in the preferences editor, to be written back once ISharedPreferencesEditor.Commit or ISharedPreferencesEditor.Apply are called.
PutString(string, string) : ISharedPreferencesEditor
Set a String value in the preferences editor, to be written back once ISharedPreferencesEditor.Commit or ISharedPreferencesEditor.Apply are called.
PutStringSet(string, ICollection<string>) : ISharedPreferencesEditor
Documentation for this section has not yet been entered.
Remove(string) : ISharedPreferencesEditor
Mark in the editor that a preference value should be removed, which will be done in the actual preferences once ISharedPreferencesEditor.Commit is called.