Porting HttpModule .Net Class Library to .Net Core Web API
问题 I am migrating a project from .net Web Application to .Net core Web API. I am using HTTP Module which is .net framework class library, in IIS Integrated mode. So, thought to port as it is, to my new core app. I pasted web.config to my new core app and added a project reference to that Http Module and it started working. I am having some Context.Response.Write in my BeginRequest method, and I can see those lines whenever I am making a call to my web api. But, I am having some questions here.