Plugin.SecureStorage.SecureStorageImplementation.HasKey C# (CSharp) Method

HasKey() public method

Determines whether specified key exists in the storage
public HasKey ( string key ) : bool
key string
return bool
        public override bool HasKey(string key)
        {
            // validate if key is valid
            base.HasKey(key);
            // retrieve to see, if it exists
			return GetSecretKeyEntry(key) != null;
        }