17 references to GetValue
Microsoft.Build.Framework (2)
NativeMethods.cs (2)
347object longPathsEnabledValue = fileSystemKey?.GetValue(WINDOWS_LONG_PATHS_ENABLED_VALUE_NAME, -1); 402object sacValue = policyKey.GetValue(WINDOWS_SAC_VALUE_NAME, -1);
Microsoft.Build.Tasks.Core (3)
src\msbuild\src\Shared\AssemblyFolders\AssemblyFoldersEx.cs (3)
239string platformValue = keyPlatform.GetValue("Platform", null) as string; 297string minVersionAsString = keyPlatform.GetValue("MinOSVersion", null) as string; 305string maxVersionAsString = keyPlatform.GetValue("MaxOSVersion", null) as string;
Microsoft.Build.Utilities.Core (3)
src\msbuild\src\Shared\AssemblyFolders\AssemblyFoldersEx.cs (3)
239string platformValue = keyPlatform.GetValue("Platform", null) as string; 297string minVersionAsString = keyPlatform.GetValue("MinOSVersion", null) as string; 305string maxVersionAsString = keyPlatform.GetValue("MaxOSVersion", null) as string;
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Interaction.vb (1)
434o = rk.GetValue(Key, [Default])
Microsoft.Win32.Registry (1)
Microsoft\Win32\Registry.cs (1)
73return key?.GetValue(valueName, defaultValue);
PresentationCore (1)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
285result = ((int)(Registry.CurrentUser.OpenSubKey(WpfPointerKey, RegistryKeyPermissionCheck.ReadSubTree)?.GetValue(WpfPointerValue, 0) ?? 0)) == 1;
System.Management (1)
System\Management\ManagementScope.cs (1)
56return ((int)s_switchesRegKey.GetValue(c_WMIDisableCOMSecurity, -1 /* default */) == 1);
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (5)
2288object value = key.GetValue(RegistryStateNames.AlphabeticalSort, "0"); 2294value = key.GetValue(RegistryStateNames.HelpVisible, "1"); 2297value = key.GetValue(RegistryStateNames.CommandsVisible, "0"); 2302value = key.GetValue(RegistryStateNames.CommentSizeRatio, "-1"); 2313value = key.GetValue(RegistryStateNames.CommandSizeRatio, "-1");