Example #1
0
 public override void SetValue(baseKey RootKey, string key, string valueName, string value, valueType ValueType)
 {
     if (IsConnected)
     {
         try
         {
             RegistryMethod.SetValue(connectionScope, RootKey, key, valueName, value, ValueType);
         }
         catch (Exception err)
         {
             throw err;
         }
     }
 }