Interface ILoggingConfig
A collection of ILoggingEnvironmentConfig objects, and a means of getting one relevant to the IEnvironmentConfig you are using.
Inherited Members
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface ILoggingConfig : IData
Properties
EnvironmentConfigs
A collection of ILoggingEnvironmentConfig objects.
Declaration
ILoggingEnvironmentConfig[] EnvironmentConfigs { get; }
Property Value
Type | Description |
---|---|
ILoggingEnvironmentConfig[] |
Methods
TryGetEnvironmentConfig(IEnvironmentConfig, out ILoggingEnvironmentConfig)
Sets the first ILoggingEnvironmentConfig objects that matches the provided IEnvironmentConfig. Returns true if one was found, false otherwise.
Declaration
bool TryGetEnvironmentConfig(IEnvironmentConfig environmentConfig, out ILoggingEnvironmentConfig config)
Parameters
Type | Name | Description |
---|---|---|
IEnvironmentConfig | environmentConfig | The IEnvironmentConfig to filter with. |
ILoggingEnvironmentConfig | config | The reference to a ILoggingEnvironmentConfig to set. |
Returns
Type | Description |
---|---|
Boolean |