SectionInformation.OverrideMode Property

Definition

Gets or sets the OverrideMode enumeration value that specifies whether the associated configuration section can be overridden by child configuration files.

public:
 property System::Configuration::OverrideMode OverrideMode { System::Configuration::OverrideMode get(); void set(System::Configuration::OverrideMode value); };
public System.Configuration.OverrideMode OverrideMode { get; set; }
member this.OverrideMode : System.Configuration.OverrideMode with get, set
Public Property OverrideMode As OverrideMode

Property Value

One of the OverrideMode enumeration values.

Exceptions

An attempt was made to change both the AllowOverride and OverrideMode properties, which is not supported for compatibility reasons.

Remarks

The AllowOverride property gets or sets a value that indicates whether resources declared inside a location element can be overridden by child configuration files. The OverrideMode property gets or sets a value that specifies similar behavior, but does so for a specific configuration element or group, and uses one of the OverrideMode enumeration values. The OverrideMode property enables behavior to be inherited from a parent element.

You cannot programmatically set both the AllowOverride and OverrideMode property. Setting the AllowOverride property to true sets the OverrideMode property to Inherit. Setting the AllowOverride property to false sets the OverrideMode property to false.

Applies to

See also