UpdateInformationAppliesToVersion Method |
Determines whether the update applies to the specified version.
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 bool AppliesToVersion(
Version version
)
Public Function AppliesToVersion (
version As Version
) As Boolean
public:
bool AppliesToVersion(
Version^ version
)
member AppliesToVersion :
version : Version -> bool
Parameters
- version
- Type: SystemVersion
A Version to test.
Return Value
Type:
Boolean if the update represented by the
UpdateInformation
can be applied to
version; otherwise,
.
Remarks
Any update in the
AllUpdates collection can
be downloaded by setting it to
CurrentUpdate
and calling one of the
DownloadUpdate
methods. However, only updates that apply to a controller's
Version can be applied by that controller.
To see the list of updates that applies to the controller's current
Version, check the
AvailableUpdates collection.
See Also