Interface IAbstractConfigurationNode
Represents a configuration node with a key and a value.
Configuration nodes are an abstraction over key value pairs, where value could be a terminal node or a list of more nodes.
Namespace: Snowflake.Configuration.Serialization
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IAbstractConfigurationNode
Properties
Key
The key, or name of the node. The key of a node must be representable as a
System.
In general, nodes are transformed into some form Key = Value, whether in a serialzied format or a configuration object.
Declaration
string Key { get; }
Property Value
Type | Description |
---|---|
System. |
Value
The value this node encapsulates.
Declaration
object Value { get; }
Property Value
Type | Description |
---|---|
System. |