UpdateControllerGetUpdateChain Method |
Gets an array of
UpdateInformation corresponding to all updates
in the current chain.
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[] GetUpdateChain()
Public Function GetUpdateChain As UpdateInformation()
public:
array<UpdateInformation^>^ GetUpdateChain()
member GetUpdateChain : unit -> UpdateInformation[]
Return Value
Type:
UpdateInformationAn array of
UpdateInformation corresponding to the current
update chain, or an empty array if
CurrentUpdate is
.
Remarks
If update chaining is disabled, GetUpdateChain will return an array containing
only CurrentUpdate, or, if CurrentUpdate is ,
an empty array. If update chaining is enabled, and a chain of updates is set to be applied,
GetUpdateChain will return all updates in the chain, from lowest to highest
version (CurrentUpdate will be the last item in the array).
To enable automatic update chaining, set EnableAutoChaining to .
See Also