프로퍼티 | 타입 | 설명 | |
---|---|---|---|
Empty |
메소드 | 설명 | |
---|---|---|
AsEnumerable ( ) : HoconValue>>.IEnumerable |
Retrieves an enumerable key value pair representation of the current configuration.
|
|
Config ( ) : System |
Initializes a new instance of the Config class.
|
|
Config ( |
Initializes a new instance of the Config class.
|
|
Config ( Akka.Configuration.Hocon.HoconRoot root ) : System |
Initializes a new instance of the Config class.
|
|
GetBoolean ( string path, bool @default = false ) : bool |
Retrieves a boolean value from the specified path in the configuration.
|
|
GetBooleanList ( string path ) : IList |
Retrieves a list of boolean values from the specified path in the configuration.
|
|
GetByteList ( string path ) : IList |
Retrieves a list of byte values from the specified path in the configuration.
|
|
GetByteSize ( string path ) : long? |
Retrieves a long value, optionally suffixed with a 'b', from the specified path in the configuration.
|
|
GetConfig ( string path ) : |
Retrieves a new configuration from the current configuration with the root node being the supplied path.
|
|
GetDecimal ( string path, decimal @default ) : decimal |
Retrieves a decimal value from the specified path in the configuration.
|
|
GetDecimalList ( string path ) : IList |
Retrieves a list of decimal values from the specified path in the configuration.
|
|
GetDouble ( string path, double @default ) : double |
Retrieves a double value from the specified path in the configuration.
|
|
GetDoubleList ( string path ) : IList |
Retrieves a list of double values from the specified path in the configuration.
|
|
GetFloat ( string path, float @default ) : float |
Retrieves a float value from the specified path in the configuration.
|
|
GetFloatList ( string path ) : IList |
Retrieves a list of float values from the specified path in the configuration.
|
|
GetInt ( string path, int @default ) : int |
Retrieves an integer value from the specified path in the configuration.
|
|
GetIntList ( string path ) : IList |
Retrieves a list of int values from the specified path in the configuration.
|
|
GetLong ( string path, long @default ) : long |
Retrieves a long value from the specified path in the configuration.
|
|
GetLongList ( string path ) : IList |
Retrieves a list of long values from the specified path in the configuration.
|
|
GetString ( string path, string @default = null ) : string |
Retrieves a string value from the specified path in the configuration.
|
|
GetStringList ( string path ) : IList |
Retrieves a list of string values from the specified path in the configuration.
|
|
GetTimeSpan ( string path, System.TimeSpan @default = null, bool allowInfinite = true ) : System.TimeSpan |
Retrieves a TimeSpan value from the specified path in the configuration.
|
|
GetValue ( string path ) : |
Retrieves a HoconValue from a specific path.
|
|
HasPath ( string path ) : bool |
Determine if a HOCON configuration element exists at the specified location
|
|
ToString ( ) : string |
Converts the current configuration to a string.
|
|
ToString ( bool includeFallback ) : string |
Converts the current configuration to a string
|
|
WithFallback ( |
Configure the current configuration with a secondary source.
|
|
operator ( ) : |
Adds the supplied configuration string as a fallback to the supplied configuration.
|
메소드 | 설명 | |
---|---|---|
Copy ( ) : |
Generates a deep clone of the current configuration.
|
메소드 | 설명 | |
---|---|---|
GetMillisDuration ( string path, System.TimeSpan @default = null, bool allowInfinite = true ) : System.TimeSpan | ||
GetNode ( string path ) : |
public AsEnumerable ( ) : HoconValue>>.IEnumerable |
||
리턴 | HoconValue>>.IEnumerable |
public Config ( |
||
source | The configuration to use as the primary source. | |
fallback | The configuration to use as a secondary source. | |
리턴 | System |
public Config ( Akka.Configuration.Hocon.HoconRoot root ) : System | ||
root | Akka.Configuration.Hocon.HoconRoot | The root node to base this configuration. |
리턴 | System |
public GetBoolean ( string path, bool @default = false ) : bool | ||
path | string | The path that contains the value to retrieve. |
@default | bool | |
리턴 | bool |
public GetBooleanList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetByteList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetByteSize ( string path ) : long? | ||
path | string | The path that contains the value to retrieve. |
리턴 | long? |
public GetConfig ( string path ) : |
||
path | string | The path that contains the configuration to retrieve. |
리턴 |
public GetDecimal ( string path, decimal @default ) : decimal | ||
path | string | The path that contains the value to retrieve. |
@default | decimal | |
리턴 | decimal |
public GetDecimalList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetDouble ( string path, double @default ) : double | ||
path | string | The path that contains the value to retrieve. |
@default | double | |
리턴 | double |
public GetDoubleList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetFloat ( string path, float @default ) : float | ||
path | string | The path that contains the value to retrieve. |
@default | float | |
리턴 | float |
public GetFloatList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetInt ( string path, int @default ) : int | ||
path | string | The path that contains the value to retrieve. |
@default | int | |
리턴 | int |
public GetIntList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetLong ( string path, long @default ) : long | ||
path | string | The path that contains the value to retrieve. |
@default | long | |
리턴 | long |
public GetLongList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetString ( string path, string @default = null ) : string | ||
path | string | The path that contains the value to retrieve. |
@default | string | |
리턴 | string |
public GetStringList ( string path ) : IList |
||
path | string | The path that contains the values to retrieve. |
리턴 | IList |
public GetTimeSpan ( string path, System.TimeSpan @default = null, bool allowInfinite = true ) : System.TimeSpan | ||
path | string | The path that contains the value to retrieve. |
@default | System.TimeSpan | |
allowInfinite | bool | |
리턴 | System.TimeSpan |
public GetValue ( string path ) : |
||
path | string | The path that contains the value to retrieve. |
리턴 |
public HasPath ( string path ) : bool | ||
path | string | The location to check for a configuration value. |
리턴 | bool |
public ToString ( bool includeFallback ) : string | ||
includeFallback | bool | if true returns string with current config combined with fallback key-values else only current config key-values |
리턴 | string |
public WithFallback ( |
||
fallback | The configuration to use as a secondary source. | |
리턴 |