10 references to RegistryOptions
Microsoft.Win32.Registry (9)
Microsoft\Win32\RegistryKey.cs (9)
175return CreateSubKey(subkey, writable ? RegistryKeyPermissionCheck.ReadWriteSubTree : RegistryKeyPermissionCheck.ReadSubTree, RegistryOptions.None); 178public RegistryKey CreateSubKey(string subkey, bool writable, RegistryOptions options) 185return CreateSubKey(subkey, permissionCheck, RegistryOptions.None); 190return CreateSubKey(subkey, permissionCheck, RegistryOptions.None, registrySecurity); 193public RegistryKey CreateSubKey(string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptions) 198public unsafe RegistryKey CreateSubKey(string subkey, RegistryKeyPermissionCheck permissionCheck, RegistryOptions registryOptions, RegistrySecurity? registrySecurity) 1537private static void ValidateKeyOptions(RegistryOptions options) 1539if (options < RegistryOptions.None || options > RegistryOptions.Volatile)
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
16[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(Microsoft.Win32.RegistryOptions))]