共用方式為


IPreferences 介面

定義

喜好設定 API 有助於將應用程式喜好設定儲存在機碼/值存放區中。

public interface class IPreferences
public interface IPreferences
type IPreferences = interface
Public Interface IPreferences

備註

每個平台都會使用平臺提供的 API 來儲存應用程式/使用者喜好設定:

  • iOS:NSUserDefaults
  • Android:共用喜好設定
  • Windows:ApplicationDataContainer

方法

Clear(String)

清除所有索引鍵和值。

ContainsKey(String, String)

檢查指定索引鍵是否存在。

Get<T>(String, T, String)

取得指定索引鍵的值,如果索引鍵不存在,則為指定的預設值。

Remove(String, String)

如果索引鍵存在,則會移除索引鍵及其相關聯的值。

Set<T>(String, T, String)

設定指定索引鍵的值。

適用於