Click or drag to resize
UpdateControllerAllUpdates Property
Gets a collection of UpdateInformation objects that represent all updates found from the last update check, or if no update information is available.

Namespace: Kjs.AppLife.Update.Controller
Assembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntax
public AvailableUpdateCollection AllUpdates { get; }

Property Value

Type: AvailableUpdateCollection
A collection of all updates found in the last update check, or if no update information is available or the controller has not yet checked for updates.
Remarks

This property can be filled by calling any method that checks for an available update: CheckForUpdate, CheckForUpdateAsync, ShowCheckForUpdateDialog, or UpdateInteractive if the user cancels the update process after an update is found. However, if no update is available, it will remain .

The CurrentUpdate property can only be set to an item from this collection, or from AvailableUpdates, which contains a subset of this collection. Although CurrentUpdate can be set to any item from AllUpdates, the ApplyUpdate method will throw an exception if CurrentUpdate is not set to a member of the AvailableUpdates collection.

See Also