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)
230
GetRegistryKeyAccess(permissionCheck != RegistryKeyPermissionCheck.ReadSubTree) | (int)
_regView
,
237
RegistryKey key = new RegistryKey(result, (permissionCheck != RegistryKeyPermissionCheck.ReadSubTree), false, _remoteKey, false,
_regView
);
294
int ret = Interop.Advapi32.RegDeleteKeyEx(_hkey, subkey, (int)
_regView
, 0);
359
ret = Interop.Advapi32.RegDeleteKeyEx(key._hkey, string.Empty, (int)
_regView
, 0);
506
int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, (GetRegistryKeyAccess(writable) | (int)
_regView
), out SafeRegistryHandle result);
509
RegistryKey key = new RegistryKey(result, writable, false, _remoteKey, false,
_regView
);
550
int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, (int)rights | (int)
_regView
, out SafeRegistryHandle result);
553
RegistryKey key = new RegistryKey(result, (permissionCheck == RegistryKeyPermissionCheck.ReadWriteSubTree), false, _remoteKey, false,
_regView
);
577
int ret = Interop.Advapi32.RegOpenKeyEx(_hkey, name, 0, GetRegistryKeyAccess(writable) | (int)
_regView
, out SafeRegistryHandle result);
580
RegistryKey key = new RegistryKey(result, writable, false, _remoteKey, false,
_regView
);
645
return
_regView
;
693
GetRegistryKeyAccess(IsWritable()) | (int)
_regView
,