Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public partial class CNSecureStorage : ICNSecureStorage
- {
- public Task<string?> GetAsync(string key) => SecureStorage.Default.GetAsync(key);
- public bool Remove(string key) => SecureStorage.Default.Remove(key);
- public void RemoveAll() => SecureStorage.Default.RemoveAll();
- public Task SetAsync(string key, string value) => SecureStorage.Default.SetAsync(key, value);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement