Esempio n. 1
0
 public void TestRemove()
 {
     userPreferences.PutString(StoreKey, "test");
     userPreferences.RemoveValue(StoreKey);
     Assert.IsNull(userPreferences.GetString(StoreKey));
 }
Esempio n. 2
0
 public void TestRemove()
 {
     Store.PutString(StoreKey, "test");
     Store.RemoveValue(StoreKey);
     Assert.IsNull(Store.GetString(StoreKey));
 }
 /// <summary>
 /// Clear the credential.
 /// </summary>
 public void Clear()
 {
     userPreferences.RemoveValue(KeyName);
 }