英文:
IHttpHandler with .Net 6/7 and IIS
问题
我们有一个自定义的IHttpHandler,负责处理IIS中的传入请求。
我们已经重写了
public interface IHttpHandler
{
bool IsReusable { get; }
void ProcessRequest(HttpContext context);
}
我们想要升级到.net 6或7,但System.Web.IHttpHandler命名空间不存在,以及如何在IIS下安装.net 6或7?
什么是最佳方式?
英文:
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 ?
答案1
得分: 1
如果您的目标是扩展IIS功能,那么您必须继续使用.NET Framework。
ASP.NET Core中间件是一种不同的方法,与IIS管道没有紧密集成。
英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论