Click or drag to resize
UpdateControllerUseHostAssemblyVersion Property
Gets or sets a value that specifies whether the controller will use the hosting assembly's version as the value for Version.

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 bool UseHostAssemblyVersion { get; set; }

Property Value

Type: Boolean
if Version should always return the hosting assembly's version; if it will be set manually.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe property is set and IsBusy is .
Remarks

When UseHostAssemblyVersion is , Version will always return the version of the assembly returned by Assembly.GetEntryAssembly. Otherwise, Version can be set explicitly. Otherwise, Version can be set explicitly.

When Version changes, the list of available updates returned by AvailableUpdates is recreated to match the new version and CurrentUpdate is set to . If EnableAutoChaining is , this will disable updating until the next update check.

See Also