17 references to RegistryRights
Microsoft.Win32.Registry (16)
Microsoft\Win32\RegistryKey.cs (5)
532return OpenSubKey(name, permissionCheck, (RegistryRights)GetRegistryKeyAccess(permissionCheck)); 535public RegistryKey? OpenSubKey(string name, RegistryRights rights) 540public RegistryKey? OpenSubKey(string name, RegistryKeyPermissionCheck permissionCheck, RegistryRights rights) 1553private static void ValidateKeyRights(RegistryRights rights) 1555if (0 != (rights & ~RegistryRights.FullControl))
System\Security\AccessControl\RegistrySecurity.cs (11)
14public RegistryAccessRule(IdentityReference identity, RegistryRights registryRights, AccessControlType type) 19public RegistryAccessRule(string identity, RegistryRights registryRights, AccessControlType type) 24public RegistryAccessRule(IdentityReference identity, RegistryRights registryRights, InheritanceFlags inheritanceFlags, PropagationFlags propagationFlags, AccessControlType type) 29public RegistryAccessRule(string identity, RegistryRights registryRights, InheritanceFlags inheritanceFlags, PropagationFlags propagationFlags, AccessControlType type) 55public RegistryRights RegistryRights 57get { return (RegistryRights)AccessMask; } 64public RegistryAuditRule(IdentityReference identity, RegistryRights registryRights, InheritanceFlags inheritanceFlags, PropagationFlags propagationFlags, AuditFlags flags) 69public RegistryAuditRule(string identity, RegistryRights registryRights, InheritanceFlags inheritanceFlags, PropagationFlags propagationFlags, AuditFlags flags) 79public RegistryRights RegistryRights 81get { return (RegistryRights)AccessMask; } 237get { return typeof(RegistryRights); }
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
845[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.AccessControl.RegistryRights))]