/// <summary> /// Clears a subkey from the cache /// </summary> /// <returns>An awaitable task</returns> public Task InvalidateAsync(string subkey) => m_parent.RemoveItem(GetKeyForSubkey(subkey));
/// <summary> /// Clears the key from the cache /// </summary> /// <returns>An awaitable task</returns> public Task InvalidateAsync() => m_parent.RemoveItem(m_key);