using Microsoft.AspNetCore.Http; namespace QYZH.InteractiveMagazine.Infrastructure.Middleware; /// /// 保留兼容的JWT自动刷新中间件,实际刷新在认证成功后执行。 /// public class JwtAutoRefreshMiddleware { private readonly RequestDelegate _next; public JwtAutoRefreshMiddleware(RequestDelegate next) { _next = next; } public async Task InvokeAsync(HttpContext context) { await _next(context); } }