15 references to GetValue
mscorlib (14)
system\timezoneinfo.cs (14)
2343Int32 first = (Int32)dynamicKey.GetValue(c_firstEntryValue, -1, RegistryValueOptions.None); 2344Int32 last = (Int32)dynamicKey.GetValue(c_lastEntryValue, -1, RegistryValueOptions.None); 2353Byte[] regValue = dynamicKey.GetValue(first.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[]; 2389regValue = dynamicKey.GetValue(i.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[]; 2405regValue = dynamicKey.GetValue(last.ToString(CultureInfo.InvariantCulture), null, RegistryValueOptions.None) as Byte[]; 2503Byte[] regValue = (Byte[])key.GetValue(c_timeZoneInfoValue, null, RegistryValueOptions.None) as Byte[]; 2538String registryStandardName = key.GetValue(c_standardValue, String.Empty, RegistryValueOptions.None) as String; 2688String displayNameMuiResource = key.GetValue(c_muiDisplayValue, String.Empty, RegistryValueOptions.None) as String; 2689String standardNameMuiResource = key.GetValue(c_muiStandardValue, String.Empty, RegistryValueOptions.None) as String; 2690String daylightNameMuiResource = key.GetValue(c_muiDaylightValue, String.Empty, RegistryValueOptions.None) as String; 2707displayName = key.GetValue(c_displayValue, String.Empty, RegistryValueOptions.None) as String; 2710standardName = key.GetValue(c_standardValue, String.Empty, RegistryValueOptions.None) as String; 2713daylightName = key.GetValue(c_daylightValue, String.Empty, RegistryValueOptions.None) as String; 2789Byte[] regValue = key.GetValue(c_timeZoneInfoValue, null, RegistryValueOptions.None) as Byte[];
System (1)
services\monitoring\system\diagnosticts\PerformanceCounterLib.cs (1)
649object systemDllName = key.GetValue("Library", null, RegistryValueOptions.DoNotExpandEnvironmentNames);