Class RegistryPersistenceProvider
Provides a mechanism for storing AutoUpdater state between sessions based on storing data on the Windows Registry.
public class RegistryPersistenceProvider : IPersistenceProvider
- Inheritance
-
RegistryPersistenceProvider
- Implements
- Inherited Members
- Extension Methods
Constructors
RegistryPersistenceProvider(string)
Initializes a new instance of the RegistryPersistenceProvider class indicating the path for the Windows registry key to use for storing the data.
public RegistryPersistenceProvider(string registryLocation)
Parameters
registryLocation
string
Methods
GetRemindLater()
Reads the value containing the date and time at which the user must be given again the possibility to upgrade the application.
public DateTime? GetRemindLater()
Returns
- DateTime?
Returns a DateTime value at which the user must be given again the possibility to upgrade the application. If remind later value is not present then it will return null.
GetSkippedVersion()
Reads the flag indicating whether a specific version should be skipped or not.
public Version GetSkippedVersion()
Returns
- Version
Returns a version to skip. If skip value is false or not present then it will return null.
SetRemindLater(DateTime?)
Sets the date and time at which the user must be given again the possibility to upgrade the application.
public void SetRemindLater(DateTime? remindLaterAt)
Parameters
remindLaterAt
DateTime?Date and time at which the user must be given again the possibility to upgrade the application.
SetSkippedVersion(Version)
Sets the values indicating the specific version that must be ignored by AutoUpdater.
public void SetSkippedVersion(Version version)
Parameters
version
VersionVersion code for the specific version that must be ignored. Set it to null if you don't want to skip any version.