protected override void RealPut(ConfigurationParameter setting, string value)
 {
     // If encryption is required, it will be performed by Settings
     if (trans == null)
     {
         Settings.SetPersistent(setting.GetUniqueName(), value, setting.IsNodeConfiguration(), setting.IsEncryptedConfiguration());
     }
     else
     {
         Settings.SetPersistent(trans, setting.GetUniqueName(), value, setting.IsNodeConfiguration(), setting.IsEncryptedConfiguration());
     }
 }
 protected override string RealGet(ConfigurationParameter setting)
 {
     // If decryption is required, it will be performed by Settings
     return(Settings.Get(setting.GetUniqueName(), setting.IsNodeConfiguration(), setting.IsEncryptedConfiguration(), null, /*skipCache*/ false));
 }