예제 #1
0
        public void Load(string key)
        {
            var data = SecurePrefs.GetJSON(key);

            if (data != null && data is Hashtable)
            {
                StoreResult((Hashtable)data, true);
            }
        }
예제 #2
0
 public void Load(string key)
 {
     Update(SecurePrefs.GetJSON(key));
 }