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)

为给定键设置一个值。

适用于