We have a custom IHttpHandler that is responsible for the incomming request in IIS.
we have override
public interface IHttpHandler
{
bool IsReusable { get; }
void ProcessRequest(HttpContext context);
}
We want upgrade with .net 6 or 7 but the namespace System.Web.IHttpHandler doesn’t exist and
how install .net 6 or 7 under IIS ?
What’s the best way ?
>Solution :
If your goal is to extend IIS functionality, then you have to stay on .NET Framework.
ASP.NET Core middleware is a different approach and not tightly integrated with IIS pipeline.