AppSettingScope Enumeration |
Specifies the scope of a setting's value in the application configuration.
Namespace:
Dundas.BI.Configuration
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public enum AppSettingScope
Public Enumeration AppSettingScope
public enum class AppSettingScope
Members
| Member name | Value | Description |
---|
| None | 0 |
No scope has been specified.
|
| Global | 20 |
The value applies to the entire application, unless overridden by a group or server-specific value.
|
| ServerGroup | 30 |
The value applies to a server group, unless overridden by a server-specific value.
|
| Server | 40 |
The value applies only to a specific server.
|
| FileOverride | 100 |
The value applies to a specific server and comes from an on-disk configuration override file.
|
| Effective | 200 |
The value is the one that applies to the current server, no matter which scope it is in.
|
See Also