6 references to RegistryValueOptions
Microsoft.Win32.Registry (4)
Microsoft\Win32\RegistryKey.cs (4)
977public object? GetValue(string? name, object? defaultValue, RegistryValueOptions options) 979if (options < RegistryValueOptions.None || options > RegistryValueOptions.DoNotExpandEnvironmentNames) 983bool doNotExpand = (options == RegistryValueOptions.DoNotExpandEnvironmentNames);
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
18[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(Microsoft.Win32.RegistryValueOptions))]
System.Diagnostics.PerformanceCounter (1)
System\Diagnostics\PerformanceCounterLib.cs (1)
706object systemDllName = key.GetValue("Library", null, RegistryValueOptions.DoNotExpandEnvironmentNames);