Table of Contents

Class UpdateInfoEventArgs

Namespace
HeBianGu.Systems.Upgrade
Assembly
HeBianGu.Systems.Upgrade.dll

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

string

CheckSum

Checksum of the update file.

public CheckSum CheckSum { get; set; }

Property Value

CheckSum

CurrentVersion

Returns newest version of the application available to download.

public string CurrentVersion { get; set; }

Property Value

string

DownloadURL

Download URL of the update file.

public string DownloadURL { get; set; }

Property Value

string

Error

If there is an error while checking for update then this property won't be null.

public Exception Error { get; set; }

Property Value

Exception

InstalledVersion

Returns version of the application currently installed on the user's PC.

public Version InstalledVersion { get; set; }

Property Value

Version

InstallerArgs

Command line arguments used by Installer.

public string InstallerArgs { get; set; }

Property Value

string

IsUpdateAvailable

If new update is available then returns true otherwise false.

public bool IsUpdateAvailable { get; set; }

Property Value

bool

Mandatory

Shows if the update is required or optional.

public Mandatory Mandatory { get; set; }

Property Value

Mandatory