/// <summary> /// Removes the grant by key. /// </summary> /// <param name="key">The key.</param> /// <returns></returns> public async Task RemoveAsync(string key) { await _repository .DeleteAsync(key, CancellationToken.None); }