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

Unprotect() public method

public Unprotect ( string key ) : string
key string
return string
        public string Unprotect(string key)
        {
            try
            {
                return _preferences.GetString(key, null);
            }
            catch
            {
                return null;
            }
        }