Class HoconRoot
This class represents the root element in a HOCON (Human-Optimized Config Object Notation) configuration string.
Inherited Members
Namespace: Akka.Configuration.Hocon
Assembly: Akka.dll
Syntax
public class HoconRoot
Constructors
| Improve this Doc View SourceHoconRoot()
Initializes a new instance of the HoconRoot class.
Declaration
protected HoconRoot()
HoconRoot(HoconValue)
Initializes a new instance of the HoconRoot class.
Declaration
public HoconRoot(HoconValue value)
Parameters
Type | Name | Description |
---|---|---|
HoconValue | value | The value to associate with this element. |
HoconRoot(HoconValue, IEnumerable<HoconSubstitution>)
Initializes a new instance of the HoconRoot class.
Declaration
public HoconRoot(HoconValue value, IEnumerable<HoconSubstitution> substitutions)
Parameters
Type | Name | Description |
---|---|---|
HoconValue | value | The value to associate with this element. |
IEnumerable<HoconSubstitution> | substitutions | An enumeration of substitutions to associate with this element. |
Properties
| Improve this Doc View SourceSubstitutions
Retrieves an enumeration of substitutions associated with this element.
Declaration
public IEnumerable<HoconSubstitution> Substitutions { get; }
Property Value
Type | Description |
---|---|
IEnumerable<HoconSubstitution> |
Value
Retrieves the value associated with this element.
Declaration
public HoconValue Value { get; }
Property Value
Type | Description |
---|---|
HoconValue |