Interface IConfigurationServiceItem
An interface for representing a configuration setting returned from an IConfigurationService.
Normally only used when implementing a new IConfigurationService.
Namespace: actionETL.Configuration
Assembly: actionETL.dll
Syntax
public interface IConfigurationServiceItem
Properties
ApplyTo
Gets what part of the worker hierarchy this configuration applies to.
null or an empty string represent a value that applies globally.
Declaration
string ApplyTo { get; }
Property Value
| Type | Description |
|---|---|
| String |
Name
Gets the name of the configuration.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| String |
Value
Gets the value of the configuration.
Declaration
string Value { get; }
Property Value
| Type | Description |
|---|---|
| String |