Table of Contents

Enum RegistryChangeNotificationFilters

Namespace
Microsoft.VisualStudio.Threading
Assembly
Microsoft.VisualStudio.Threading.dll

The various types of data within a registry key that generate notifications when changed.

[Flags]
public enum RegistryChangeNotificationFilters

Fields

Attributes = 2

Notify the caller of changes to the attributes of the key, such as the security descriptor information.

Security = 8

Notify the caller of changes to the security descriptor of the key.

Subkey = 1

Notify the caller if a subkey is added or deleted.

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.

Remarks

This enum matches the Win32 REG_NOTIFY_CHANGE_* constants.