ApplicationDeployment.UpdatedVersion Property

Definition

Gets the version of the update that was recently downloaded.

C#
public Version UpdatedVersion { get; }

Property Value

The Version describing the version of the update.

Examples

The following code example defines a method that determines whether ClickOnce has updated the application.

C#
public Boolean IsNewVersionAvailable()
{
    Boolean isRestartRequired = false;

    if (ApplicationDeployment.IsNetworkDeployed)
    {
        ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;
        if (ad.UpdatedVersion > ad.CurrentVersion)
        {
            isRestartRequired = true;
        }
    }

    return (isRestartRequired);
}

Remarks

UpdatedVersion differs from CurrentVersion if a new update has been installed but you have not yet called Restart on the Application. If the application's deployment manifest is configured to perform automatic updates, you can compare these two values to determine whether you should restart the application.

If the application has not been updated, UpdatedVersion returns the same value as CurrentVersion.

Applies to

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1