OverrideMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the override behavior of a configuration section.
public enum class OverrideMode
public enum OverrideMode
type OverrideMode =
Public Enum OverrideMode
- Inheritance
-
OverrideMode
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The override mode of the ConfigurationSection is unknown. |
Inherit | 1 | The override mode of the ConfigurationSection is inherited from a parent configuration object. |
Allow | 2 | The ConfigurationSection object allows override values in the current configuration object. |
Deny | 3 | The ConfigurationSection denies override values in the current configuration object. |
Remarks
Configuration sections are locked if child objects in the configuration hierarchy are denied permission to override values in the parent configuration section. However, configuration sections can explicitly allow override values to be defined at lower configuration levels, or child objects can be configured to inherit the override mode from a parent section.