Servers - IIS - HTTP/3

In this article

Alt-Svc

app.Use((context, next) =>
{
    context.Response.Headers.AltSvc = "h3=\":443\"";
    return next(context);
});

Ref: Use ASP.NET Core with HTTP/3 on IIS