1 write to _regView
Microsoft.Win32.Registry (1)
Microsoft\Win32\RegistryKey.cs (1)
99_regView = view;
12 references to _regView
Microsoft.Win32.Registry (12)
Microsoft\Win32\RegistryKey.cs (12)
230GetRegistryKeyAccess(permissionCheck != RegistryKeyPermissionCheck.ReadSubTree) | (int)_regView, 237RegistryKey key = new RegistryKey(result, (permissionCheck != RegistryKeyPermissionCheck.ReadSubTree), false, _remoteKey, false, _regView); 294int ret = Interop.Advapi32.RegDeleteKeyEx(_hkey, subkey, (int)_regView, 0); 359ret = Interop.Advapi32.RegDeleteKeyEx(key._hkey, string.Empty, (int)_regView, 0); 506int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, (GetRegistryKeyAccess(writable) | (int)_regView), out SafeRegistryHandle result); 509RegistryKey key = new RegistryKey(result, writable, false, _remoteKey, false, _regView); 550int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, (int)rights | (int)_regView, out SafeRegistryHandle result); 553RegistryKey key = new RegistryKey(result, (permissionCheck == RegistryKeyPermissionCheck.ReadWriteSubTree), false, _remoteKey, false, _regView); 577int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, GetRegistryKeyAccess(writable) | (int)_regView, out SafeRegistryHandle result); 580RegistryKey key = new RegistryKey(result, writable, false, _remoteKey, false, _regView); 645return _regView; 693GetRegistryKeyAccess(IsWritable()) | (int)_regView,