IApplicationSettingsProvider.GetPreviousVersion(SettingsContext, SettingsProperty) Método

Definição

Retorna o valor da propriedade de configuração especificada para a versão anterior do mesmo aplicativo.Returns the value of the specified settings property for the previous version of the same application.

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

Parâmetros

context
SettingsContext

Um SettingsContext que descreve o uso do aplicativo atual.A SettingsContext describing the current application usage.

property
SettingsProperty

O SettingsProperty cujo valor será retornado.The SettingsProperty whose value is to be returned.

Retornos

SettingsPropertyValue

Um SettingsPropertyValue que contém o valor da configuração da propriedade especificada conforme foi especificada pela última vez na versão anterior do aplicativo, ou null se a configuração não pode ser encontrada.A SettingsPropertyValue containing the value of the specified property setting as it was last set in the previous version of the application; or null if the setting cannot be found.

Comentários

Você pode usar o GetPreviousVersion método em conjunto com o Upgrade método para migrar as configurações do aplicativo durante ou após a instalação de uma nova versão de um aplicativo.You can use the GetPreviousVersion method in conjunction with the Upgrade method to migrate application settings during or after the installation of a new version of an application.

Aplica-se a

Confira também