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. |
Attributes | 2 | Notify the caller of changes to the attributes of the key, such as the security descriptor information. |
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. |
Security | 8 | Notify the caller of changes to the security descriptor of the key. |
Remarks
This enum matches the Win32 REG_NOTIFY_CHANGE_* constants.