RegNotifyChangeFilter Enumeration

Specifies the changes that should be reported when calling RegNotifyChangeKeyValue(SafeRegistryHandle, Boolean, RegNotifyChangeFilter, IntPtr, Boolean) function.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum RegNotifyChangeFilter

Remarks

Members

Key 1 Notify the caller if a subkey Is added Or deleted.
Attribute 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.
Agnostic 268,435,456 Indicates that the lifetime of the registration must not be tied to the lifetime of the thread issuing the RegNotifyChangeKeyValue(SafeRegistryHandle, Boolean, RegNotifyChangeFilter, IntPtr, Boolean) call.

See Also