Beezy.MvvmCross.Plugins.SecureStorage.Touch.MvxTouchProtectedData.Remove C# (CSharp) Method

Remove() public method

public Remove ( string key ) : void
key string
return void
        public void Remove(string key)
        {
            var existingRecord = new SecRecord(SecKind.GenericPassword)
            {
                Account = key,
                Service = NSBundle.MainBundle.BundleIdentifier
            };
			var code = SecKeyChain.Remove(existingRecord);
        }
    }
MvxTouchProtectedData