Interface IHoconElement
This interface defines the contract needed to implement a HOCON (Human-Optimized Config Object Notation) element.
Namespace: Akka.Configuration.Hocon
Assembly: Akka.dll
Syntax
public interface IHoconElement
Methods
| Improve this Doc View SourceGetArray()
Retrieves a list of elements associated with this element.
Declaration
IList<HoconValue> GetArray()
Returns
Type | Description |
---|---|
IList<HoconValue> | A list of elements associated with this element. |
GetString()
Retrieves the string representation of this element.
Declaration
string GetString()
Returns
Type | Description |
---|---|
String | The string representation of this element. |
IsArray()
Determines whether this element is an array.
Declaration
bool IsArray()
Returns
Type | Description |
---|---|
Boolean |
|
IsString()
Determines whether this element is a string.
Declaration
bool IsString()
Returns
Type | Description |
---|---|
Boolean |
|