Content deleted Content added
No edit summary |
Moved See also above References per MOS:ORDER and other General fixes |
||
Line 8:
== OWIN as middleware ==
In addition to decoupling Web frameworks and Web servers, OWIN allows chaining together [[middleware]] into a pipeline. A Web framework can interact with OWIN without knowing whether it is interacting directly with the underlying web server, or with one or more layers of middleware (each implementing OWIN) on top of the Web server. This allows infrastructure concerns, such as [[authentication]], to be split out into separate modules. This is desirable as it decouples them from the application's own code, and makes them reusable across applications. In Project Katana, Microsoft has made into OWIN modules several ASP.NET features that were previously part of the core ASP.NET framework. This allows them to be reused in other Web frameworks, and also ensures a cleaner separation from the application using them.
== References ==▼
{{Reflist|2}}▼
== See also ==
* [[ASP.NET Core]]
* [[HTTP handler]]
▲== References ==
▲{{Reflist|2}}
== External links ==
|