Skip to main content
A newer version of this page is available. .

ModelNodesGeneratorUpdater<T>.UpdateCachedNode(ModelNode) Method

Updates the specified node after it has been recovered from the cache file.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public virtual void UpdateCachedNode(
    ModelNode node
)

Parameters

Name Type Description
node DevExpress.ExpressApp.Model.Core.ModelNode

A ModelNode object for which a custom Generator Updater is implemented (see Extend and Customize the Application Model in Code).

Remarks

When the XafApplication.EnableModelCache property is set to true, the Application Model content is cached to a file when the application is first launched, and recovered on subsequent runs. Override this method to update the node after it has been recovered from the cache.

See Also