• Home
  • Blog
  • Docs
  • GitHub
Show / Hide Table of Contents

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.String.

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.String

Value

The value this node encapsulates.

Declaration
object Value { get; }
Property Value
Type Description
System.Object
Built with ❤️ by @chyyran. Text content licensed under CC-BY-SA 4.0.