Click or drag to resize
UpdateInformationTranslatedHistoricalSummaryHtml Property
Gets the translated HTML 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 Dictionary<string, string> TranslatedHistoricalSummaryHtml { get; }

Property Value

Type: DictionaryString, String
The translated HTML historical summary text for the update.
Remarks

This property is created by appending all translated rich summaries from updates between the UpdateController's Version and this update's Version together, separated by blank lines. The dictionary key is the locale of the tranlsation.

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

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