OverrideMode Enum

Definition

Specifies the override behavior of a configuration section.

public enum class OverrideMode
public enum OverrideMode
type OverrideMode = 
Public Enum OverrideMode
Inheritance
OverrideMode

Fields

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.

Inherit 1

The override mode of the ConfigurationSection is inherited from a parent configuration object.

Unknown 0

The override mode of the ConfigurationSection is unknown.

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.

Applies to