UpdateDisplayUseHostAssemblyVersion 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.WpfAssembly: Kjs.AppLife.Update.Wpf (in Kjs.AppLife.Update.Wpf.dll) Version: 5.1.0.0 (5.1.0.0)
Syntaxpublic bool UseHostAssemblyVersion { get; set; }
Public Property UseHostAssemblyVersion As Boolean
Get
Set
public:
property bool UseHostAssemblyVersion {
bool get ();
void set (bool value);
}
member UseHostAssemblyVersion : bool with get, set
Property Value
Type:
Boolean if
Version should always return the hosting assembly's
version;
if it will be set manually.
Exceptions
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
Update Controller AvailableUpdates collection is recreated to match the new version.
See Also