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 = 2The value is a boolean value.
Enum = 6The 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 = 7The 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 = 10The value is stored in the registry as a REG_DWORD value however must be formatted against a resource string - for example "10 minutes".
FormatString = 11The value is stored in the registry as a REG_SZ value however must be formatted against a resource string - for example "10 minutes".
Integer = 1The value is a 32bit integer value.
ObsoleteBool = 3The value is a boolean value. This has been replaced with the standard boolean value type.
ObsoleteBoolBinary = 4The value is a boolean value stored in binary format. This has been replaced with the standard boolean value type.
ObsoleteBoolString = 5The 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 = 8The value is a string.
StringList = 9The value is a string list.
Unknown = 0The value is of an unknown data type.