ConfigSectionNode AddChildNodeFromMerge Method NFX Class Library

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

Adds a new section node to this configuration which is an ordered merge result of two other nodes - base and override.

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

public ConfigSectionNode AddChildNodeFromMerge(
	IConfigSectionNode baseNode,
	IConfigSectionNode overrideNode,
	NodeOverrideRules rules = null
)

Parameters

baseNode
Type: NFX.Environment IConfigSectionNode
A base node that data is defaulted from
overrideNode
Type: NFX.Environment IConfigSectionNode
A node that contains overrides/additions of/to data from base node
rules (Optional)
Type: NFX.Environment NodeOverrideRules
Rules to use for this merge. Default rules will be used if null is passed

Return Value

Type: ConfigSectionNode
See Also