ConfigurationPropertyOptions Enum

Definition

Specifies the options to apply to a property.

This enumeration supports a bitwise combination of its member values.

public enum class ConfigurationPropertyOptions
[System.Flags]
public enum ConfigurationPropertyOptions
[<System.Flags>]
type ConfigurationPropertyOptions = 
Public Enum ConfigurationPropertyOptions
Inheritance
ConfigurationPropertyOptions
Attributes

Fields

IsAssemblyStringTransformationRequired 16

Indicates whether the assembly name for the configuration property requires transformation when it is serialized for an earlier version of .NET.

IsDefaultCollection 1

Indicates that the property is a default collection.

IsKey 4

Indicates that the property is a collection key.

IsRequired 2

Indicates that the property is required.

IsTypeStringTransformationRequired 8

Indicates whether the type name for the configuration property requires transformation when it is serialized for an earlier version of .NET.

IsVersionCheckRequired 32

Indicates whether the configuration property's parent configuration section should be queried at serialization time to determine whether the configuration property should be serialized into XML.

None 0

Indicates that no option applies to the property.

Remarks

During the creation of a configuration element, you use the ConfigurationPropertyOptions enumerator to programmatically specify the options to apply. These options indicate whether a property is required, is a collection key property, etc. If a value is not specified, the value is assumed to be None.

Applies to

See also