How and where is the OWIN pipeline run in ASP.net 5? -
Given that the oven pipeline is currently pure on traditional ASP.NET pipeline, where and how integrated with ASP?
Is it implemented as an ASP.NET Header / Module?
There is a class marked with
It all starts with the assembly Microsoft. Owen.Host The System Web PreApplicationStartMethod attribute has been applied to this assembly, which means that code in this assembly is accurate even before class, Application_Start. This class adds an HTTP module (OVIN HTTPS module) in the IIS integrated ASP.NET pipeline. It detects the HTTP module startup class, and plugs the Owin pipeline into the IIIS pipeline. When the final owin middleware forwards in the pipeline, then the IIS pipeline continues.
Comments
Post a Comment