Advertisement
Guest User

CNSecureStorage

a guest
Feb 26th, 2025
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public partial class CNSecureStorage : ICNSecureStorage
  2. {
  3. public Task<string?> GetAsync(string key) => SecureStorage.Default.GetAsync(key);
  4.  
  5. public bool Remove(string key) => SecureStorage.Default.Remove(key);
  6.  
  7. public void RemoveAll() => SecureStorage.Default.RemoveAll();
  8.  
  9. public Task SetAsync(string key, string value) => SecureStorage.Default.SetAsync(key, value);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement