.net core 2.0에서 x-powered-by 헤더를 삭제하는 방법 이 미들웨어를 사용하려고 했습니다. public class SecurityHeadersMiddleware { private readonly RequestDelegate next; public SecurityHeadersMiddleware(RequestDelegate next) { this.next = next; } public async Task Invoke(HttpContext context) { context.Response.OnStarting(state => { var ctx = (HttpContext)state; if (!ctx.Response.Headers.ContainsKey("Arr-Disable-Session-Affi..