15 references to GetValue
mscorlib (2)
microsoft\win32\registry.cs (1)
155return key.GetValue(valueName, defaultValue);
system\environment.cs (1)
849string value = registryKey.GetValue(name, "").ToString();
PresentationFramework (1)
src\Framework\System\Windows\Interop\DocobjHost.cs (1)
456if ((int)lsaKey.GetValue("NoDefaultAdminOwner", 1) == 0)
System (2)
net\System\Net\HybridWebProxyFinder.cs (1)
121object fallbackKeyValue = key.GetValue(allowFallbackValueName, null);
net\System\Net\NetRegistryConfiguration.cs (1)
128object value = key.GetValue(valueName, null);
System.Management (2)
Instrumentation\WMICapabilities.cs (1)
66Object result = wmiNetKey.GetValue(MultiIndicateSupportedValueNameVal, multiIndicateSupported);
managementscope.cs (1)
61return ((int)s_switchesRegKey.GetValue(c_WMIDisableCOMSecurity, -1 /* default */) == 1);
System.Web (1)
Util\Misc.cs (1)
189return regKey.GetValue(valueName, defaultValue);
System.Windows.Forms (5)
winforms\Managed\System\WinForms\PropertyGrid.cs (5)
2682Object val = optRoot.GetValue("PbrsAlpha", "0"); 2691val = optRoot.GetValue("PbrsShowDesc", "1"); 2694val = optRoot.GetValue("PbrsShowCommands", "0"); 2698val = optRoot.GetValue("PbrsDescHeightRatio", "-1"); 2709val = optRoot.GetValue("PbrsHotCommandHeightRatio", "-1");
System.Workflow.Runtime (2)
DebugEngine\DebugController.cs (1)
485string controllerConduitTypeName = debugEngineSubKey.GetValue(ControllerConduitTypeName, String.Empty) as string;
DebugEngine\DebugControllerThread.cs (1)
103string evaluationFrameTypeName = debugEngineSubKey.GetValue(ExpressionEvaluationFrameTypeName, String.Empty) as string;