Beezy.MvvmCross.Plugins.SecureStorage.Droid.MvxAndroidProtectedData.Protect C# (CSharp) Method

Protect() public method

public Protect ( string key, string value ) : void
key string
value string
return void
        public void Protect(string key, string value)
        {
            var editor = _preferences.Edit();
            editor.PutString(key, value);
            editor.Commit();
        }