Click or drag to resize
UpdateInformationHistoricalSummary Property
Gets the historical summary text for the update, including summaries for all updates between the current version and the update's 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 string HistoricalSummary { get; }

Property Value

Type: String
The historical summary text for the update.
Remarks

This property is created by appending all summaries from updates between the UpdateController's Version and this update's Version together, separated by blank lines.

HistoricalSummary is only valid for updates in a controller's AvailableUpdates collection. Other updates in the AllUpdates collection will have a blank HistoricalSummary.

To cause an update to appear in AvailableUpdates, ensure that the UpdateController's Version property is set to a Version that the update applies to (AppliesToVersion(Version) will return ).

See Also