ApplicationDeployment::UpdatedVersion Property
Gets the version of the update that was recently downloaded.
Assembly: System.Deployment (in System.Deployment.dll)
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.
The following code example defines a method that determines whether ClickOnce has updated the application.
public: bool IsNewVersionAvailable() { bool isRestartRequired = false; if (ApplicationDeployment::IsNetworkDeployed) { ApplicationDeployment^ restartAppDeployment = ApplicationDeployment::CurrentDeployment; if (restartAppDeployment->UpdatedVersion > restartAppDeployment->CurrentVersion) { isRestartRequired = true; } } return (isRestartRequired); }
For full access to the local computer. Associated enumeration: PermissionState
Available since 2.0