From bb1065b758e91384c52d139212ebcbe8153067ec Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Tue, 21 Jul 2015 09:30:03 -0400 Subject: [PATCH] Clarified Properties dictionary; removed a few unsupported keys. --- aspnet/fundamentals/owin.rst | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/aspnet/fundamentals/owin.rst b/aspnet/fundamentals/owin.rst index 0e22f76378..30a8d91286 100644 --- a/aspnet/fundamentals/owin.rst +++ b/aspnet/fundamentals/owin.rst @@ -23,7 +23,7 @@ ASP.NET 5's OWIN support is deployed as part of the `Microsoft.AspNet.Owin `_, which defines a ``Properties IDictionary`` interface that must be used, and also requires certain keys be set (such as ``owin.ResponseBody``). We can construct a very simple example of middleware that follows the OWIN specification to display "Hello World", as shown here: +OWIN middleware conform to the `OWIN specification `_, which defines a Properties ``IDictionary`` interface that must be used, and also requires certain keys be set (such as ``owin.ResponseBody``). We can construct a very simple example of middleware that follows the OWIN specification to display "Hello World", as shown here: .. literalinclude:: owin/sample/src/OwinSample/Startup.cs :language: c# @@ -222,24 +222,6 @@ Common Keys * - server.OnSendingHeaders - ``Action,object>`` - - * - host.AppName - - ``String`` - - A name describing the application instance. - * - host.OnAppDisposing - - ``CancellationToken`` - - Signaled when the application is preparing to shut down - * - host - - ``String`` - - The host portion of the URI, e.g. `docs.asp.net` - * - scheme - - ``String`` - - The scheme portion of the URI, e.g. `http` - * - port - - ``String`` - - The port portion of the URI, e.g. `80` - * - path - - ``String`` - - The path portion of the URI, e.g. `/en/latest/fundamentals/owin.html` SendFiles v0.3.0 ^^^^^^^^^^^^^^^^