oqtane.framework/Oqtane.Client/Services/Interfaces/IOutputCacheService.cs
2025-03-11 11:48:43 -04:00

19 lines
415 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to manage cache
/// </summary>
public interface IOutputCacheService
{
/// <summary>
/// Evicts the output cache for a specific tag
/// </summary>
/// <param name="tag"></param>
/// <returns></returns>
Task EvictByTag(string tag);
}
}