IConfigSettings ConfigChanged Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Notifies the implementer that underlying source configuration has changed and memory-resident fields need to be re-read from config nodes. Usually this method is called by application container when instance of this class has been registered with the application using IApplication.RegisterConfigSettings(). Warning: the implementation must be thread-safe and allow getters to keep reading while notification happens

Namespace: NFX.Environment
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

void ConfigChanged(
	IConfigSectionNode atNode
)

Parameters

atNode
Type: NFX.Environment IConfigSectionNode
Passes the most top-level node that covers all of the changes that happened in the source config system. Usually this is a root config node. The capability of source config change detection on node level is not supported by all providers
See Also