Enum SecurityOptionDataType
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the type of data stored within a security option.
public enum SecurityOptionDataType
Fields
Boolean = 2
The value is a boolean value.
Enum = 6
The value is an enum value type stored in the registry as a REG_DWORD value and a resource string should be used to resolve it.
EnumString = 7
The value is an enum value type stored in the registry as a REG_SZ value and a resource string should be used to resolve it.
FormatInteger = 10
The value is stored in the registry as a REG_DWORD value however must be formatted against a resource string - for example "10 minutes".
FormatString = 11
The value is stored in the registry as a REG_SZ value however must be formatted against a resource string - for example "10 minutes".
Integer = 1
The value is a 32bit integer value.
ObsoleteBool = 3
The value is a boolean value. This has been replaced with the standard boolean value type.
ObsoleteBoolBinary = 4
The value is a boolean value stored in binary format. This has been replaced with the standard boolean value type.
ObsoleteBoolString = 5
The value is a boolean value stored as a REG_SZ value in the registry. This has been replaced with the standard boolean value type.
String = 8
The value is a string.
StringList = 9
The value is a string list.
Unknown = 0
The value is of an unknown data type.