Код: Выделить всё
using Microsoft.AspNetCore.Mvc;
namespace CacheTest;
[ApiController]
public class TestController : ControllerBase
{
[HttpGet, Route("cache"), ResponseCache(Duration = 3600)]
public ActionResult GetCache() => Ok("cache");
[HttpGet, Route("nocache"), ResponseCache(Location = ResponseCacheLocation.None, Duration = 0)]
public ActionResult GetNoCache() => Ok("no cache");
}
Вторая конечная точка возвращает контроль кэша заголовка: no-cache, max-age = 0 .
Подробнее здесь: https://stackoverflow.com/questions/709 ... -using-asp