Class UpdateInfoEventArgs
Object of this class gives you all the details about the update useful in handling the update logic yourself.
public class UpdateInfoEventArgs : EventArgs
- Inheritance
-
UpdateInfoEventArgs
- Inherited Members
- Extension Methods
Constructors
UpdateInfoEventArgs()
Initializes a new instance of the EventArgs class.
public UpdateInfoEventArgs()
Properties
ChangelogURL
URL of the webpage specifying changes in the new update.
public string ChangelogURL { get; set; }
Property Value
CheckSum
Checksum of the update file.
public CheckSum CheckSum { get; set; }
Property Value
CurrentVersion
Returns newest version of the application available to download.
public string CurrentVersion { get; set; }
Property Value
DownloadURL
Download URL of the update file.
public string DownloadURL { get; set; }
Property Value
Error
If there is an error while checking for update then this property won't be null.
public Exception Error { get; set; }
Property Value
InstalledVersion
Returns version of the application currently installed on the user's PC.
public Version InstalledVersion { get; set; }
Property Value
InstallerArgs
Command line arguments used by Installer.
public string InstallerArgs { get; set; }
Property Value
IsUpdateAvailable
If new update is available then returns true otherwise false.
public bool IsUpdateAvailable { get; set; }
Property Value
Mandatory
Shows if the update is required or optional.
public Mandatory Mandatory { get; set; }