Exemplo n.º 1
0
        public string SecureSet(string key, string value)
        {
            Profiguration.Profiguration prof = ProfigurationSet[ProfigurationSetKey];
            prof.AppSettings[key] = value;
            ProfigurationSet.Save();

            return(value);
        }
Exemplo n.º 2
0
 public string SecureGet(string key)
 {
     Profiguration.Profiguration prof = ProfigurationSet[ProfigurationSetKey];
     return(prof.AppSettings[key]);
 }