Ejemplo n.º 1
0
 public virtual bool SetValue(string subKey, string key, string value)
 {
     return(RegistryFactory.SetRegistryValue(RegistryKey, subKey, key, value));
 }
Ejemplo n.º 2
0
 public string TryGetValue(RegistryModel registryModel, out bool status)
 {
     return(RegistryFactory.GetRegistryValue(RegistryKey, registryModel.SubKey, registryModel.Key, out status));
 }
Ejemplo n.º 3
0
 public virtual string GetValue(string subKey, string key)
 {
     return(RegistryFactory.GetRegistryValue(RegistryKey, subKey, key, out bool status));
 }