ConfigurationElementCollectionType Enum

Definition

Specifies the type of a ConfigurationElementCollectionType object.

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

Fields

AddRemoveClearMap 1

The default type of ConfigurationElementCollection. Collections of this type contain elements that can be merged across a hierarchy of configuration files. At any particular level within such a hierarchy, add, remove, and clear directives are used to modify any inherited properties and specify new ones.

AddRemoveClearMapAlternate 3

Same as AddRemoveClearMap, except that this type causes the ConfigurationElementCollection object to sort its contents such that inherited elements are listed last.

BasicMap 0

Collections of this type contain elements that apply to the level at which they are specified, and to all child levels. A child level cannot modify the properties specified by a parent element of this type.

BasicMapAlternate 2

Same as BasicMap, except that this type causes the ConfigurationElementCollection object to sort its contents such that inherited elements are listed last.

Remarks

This enumeration contains all the possible return values for the CollectionType property. It is used by the configuration system during run time to correctly merge configuration settings. It is also used when creating a custom class that extends ConfigurationElementCollection.

By default, the type of a ConfigurationElementCollection object is AddRemoveClearMap. If a BasicMap is required, override the CollectionType property when extending ConfigurationElementCollection.

Applies to