Beispiel #1
0
 public void SetValue(string key, string data)
 {
     try
     {
         WebLocalStorage.SetValue(key, data);
     }
     catch (System.Exception ex)
     {
     }
 }
Beispiel #2
0
 public string GetValue(string key)
 {
     try
     {
         return(WebLocalStorage.GetValue(key));
     }
     catch (System.Exception ex)
     {
         return("null");
     }
 }