AspNetCore.Docs/aspnet/fundamentals/owin.rst

31 lines
1.1 KiB
ReStructuredText
Raw Normal View History

2015-07-02 23:48:58 +08:00
OWIN
====
2015-05-31 17:46:20 +08:00
2015-07-02 23:48:58 +08:00
By `Steve Smith`_
2015-05-31 17:46:20 +08:00
2015-07-02 23:48:58 +08:00
ASP.NET 5 supports OWIN, the Open Web Interface for .NET, which allows web applications to be decoupled from web servers. In addition, OWIN defines a standard way for middleware to be used in a pipeline to handle individual requests and associated responses. ASP.NET 5 applications and middleware can interoperate with OWIN-based applications and middleware.
In this article:
- `Running OWIN middleware in the ASP.NET pipeline`_
- `Using ASP.NET Hosting on an OWIN-based server`_
- `Using ASP.NET middleware in an OWIN pipeline`_
- `OWIN keys and ASP.NET OWIN adapters`_
`Browse or download samples on GitHub <https://github.com/aspnet/Docs/tree/master/docs/fundamentals/owin/sample>`_.
Running OWIN middleware in the ASP.NET pipeline
-----------------------------------------------
Using ASP.NET Hosting on an OWIN-based server
---------------------------------------------
Using ASP.NET middleware in an OWIN pipeline
--------------------------------------------
OWIN keys and ASP.NET OWIN adapters
-----------------------------------
Summary
-------
2015-05-31 17:46:20 +08:00