IApplicationSettingsProvider.GetPreviousVersion 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回同一应用程序早期版本的指定设置属性的值。
public:
System::Configuration::SettingsPropertyValue ^ GetPreviousVersion(System::Configuration::SettingsContext ^ context, System::Configuration::SettingsProperty ^ property);
public System.Configuration.SettingsPropertyValue GetPreviousVersion (System.Configuration.SettingsContext context, System.Configuration.SettingsProperty property);
abstract member GetPreviousVersion : System.Configuration.SettingsContext * System.Configuration.SettingsProperty -> System.Configuration.SettingsPropertyValue
Public Function GetPreviousVersion (context As SettingsContext, property As SettingsProperty) As SettingsPropertyValue
参数
- context
- SettingsContext
描述当前应用程序用法的 SettingsContext。
- property
- SettingsProperty
要返回其值的 SettingsProperty。
返回
包含指定属性设置值的 SettingsPropertyValue,该值为早期版本的应用程序中最后设置的值;或者,如果找不到该设置,则为 null
。
注解
可以将 GetPreviousVersion 方法与 Upgrade 方法结合使用,以在安装新版本的应用程序期间或之后迁移应用程序设置。