UpdateDialogShowingEventArgsCurrentUpdate Property |
Gets the update that has been selected as the current update available for download.
This property may be .
Namespace: Kjs.AppLife.Update.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntaxpublic UpdateInformation CurrentUpdate { get; }
Public ReadOnly Property CurrentUpdate As UpdateInformation
Get
public:
property UpdateInformation^ CurrentUpdate {
UpdateInformation^ get ();
}
member CurrentUpdate : UpdateInformation with get
Property Value
Type:
UpdateInformationThe update selected as the current update available for download, or
if no update is available for download.
Remarks
If no updates are available, or no update has been selected (by handling the
UpdateFound
event), CurrentUpdate will be .
By default, the controller selects the update with the highest Version
to be applied. However, by adding a handler to the UpdateFound event,
you can select any update from AvailableUpdates for CurrentUpdate.
By default, if CurrentUpdate is , DialogSummaryText
will be set to the value of the HistoricalSummary property of
CurrentUpdate.
See Also