ConfigurationPropertyOptions 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 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
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Indicates that no option applies to the property. |
IsDefaultCollection | 1 | Indicates that the property is a default collection. |
IsRequired | 2 | Indicates that the property is required. |
IsKey | 4 | Indicates that the property is a collection key. |
IsTypeStringTransformationRequired | 8 | Indicates whether the type name for the configuration property requires transformation when it is serialized for an earlier version of .NET. |
IsAssemblyStringTransformationRequired | 16 | Indicates whether the assembly 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. |
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.