8 references to SetValue
Microsoft.AspNetCore.DataProtection (1)
Repositories\RegistryXmlRepository.cs (1)
156RegistryKey.SetValue(valueName, element.ToString(), RegistryValueKind.String);
Microsoft.VisualStudio.LanguageServices (4)
Options\LocalUserRegistryOptionPersister.cs (4)
136subKey.SetValue(key, (bool)value ? 1 : 0, RegistryValueKind.DWord); 144subKey.SetValue(key, value, RegistryValueKind.QWord); 155subKey.SetValue(key, (long)value, RegistryValueKind.QWord); 159subKey.SetValue(key, (int)value, RegistryValueKind.DWord);
RunTests (3)
ProcDumpUtil.cs (3)
19registryKey.SetValue("DumpType", 2, RegistryValueKind.DWord); 20registryKey.SetValue("DumpCount", 2, RegistryValueKind.DWord); 21registryKey.SetValue("DumpFolder", dumpDirectory, RegistryValueKind.String);