RegistryChangeNotificationFilters 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.
The various types of data within a registry key that generate notifications when changed.
This enumeration supports a bitwise combination of its member values.
public enum class RegistryChangeNotificationFilters
public enum class RegistryChangeNotificationFilters
enum RegistryChangeNotificationFilters
[System.Flags]
public enum RegistryChangeNotificationFilters
[<System.Flags>]
type RegistryChangeNotificationFilters =
Public Enum RegistryChangeNotificationFilters
- Inheritance
-
RegistryChangeNotificationFilters
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| Subkey | 1 | Notify the caller if a subkey is added or deleted. Corresponds to Win32 value REG_NOTIFY_CHANGE_NAME. |
| Attributes | 2 | Notify the caller of changes to the attributes of the key, such as the security descriptor information. Corresponds to Win32 value REG_NOTIFY_CHANGE_ATTRIBUTES. |
| Value | 4 | Notify the caller of changes to a value of the key. This can include adding or deleting a value, or changing an existing value. Corresponds to Win32 value REG_NOTIFY_CHANGE_LAST_SET. |
| Security | 8 | Notify the caller of changes to the security descriptor of the key. Corresponds to Win32 value REG_NOTIFY_CHANGE_SECURITY. |
Remarks
This enum matches the Win32 REG_NOTIFY_CHANGE_* constants.