LocalFileSettingsProvider.GetPreviousVersion(SettingsContext, SettingsProperty) Método
Definição
Retorna o valor da propriedade de configuração nomeada para a versão anterior do mesmo aplicativo.Returns the value of the named settings property for the previous version of the same application.
public:
virtual 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
override this.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 em que local a propriedade de configurações do aplicativo é usada.A SettingsContext that describes where the application settings property is used.
- property
- SettingsProperty
O SettingsProperty cujo valor será retornado.The SettingsProperty whose value is to be returned.
Retornos
Um SettingsPropertyValue que representa a configuração de aplicativo, se encontrado; caso contrário, null.A SettingsPropertyValue representing the application setting if found; otherwise, null.
Implementações
Comentários
O GetPreviousVersion método é geralmente usado em conjunto com o Upgrade método durante a migração de configurações do aplicativo durante a instalação de uma nova versão de um aplicativo.The GetPreviousVersion method is often used in conjunction with the Upgrade method when migrating application settings during the installation of a new version of an application. Para obter mais informações, consulte o método Upgrade.For more information, see the Upgrade method.