Interface IConfigurationTarget
Defines a unit of a IConfigurationCollection<T> that will be evaluated independently into a tree of IAbstractConfigurationNode that will be evaluated and produce an output or side effects.
Namespace: Snowflake.Configuration.Serialization
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IConfigurationTarget
Properties
ChildTargets
A dictionary of targets this target is a parent of.
Declaration
IReadOnlyDictionary<string, IConfigurationTarget> ChildTargets { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IReadOnlyDictionary<System.String, IConfigurationTarget> |
TargetName
The name of the target.
Declaration
string TargetName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |