From 5b379773791a0728484239d329c37758d6bd906d Mon Sep 17 00:00:00 2001 From: "Lucas V. F. Ventura" Date: Tue, 17 May 2016 09:17:00 -0300 Subject: [PATCH] Update middleware.rst Asp.Net 5 name correction to Asp.Net Core --- aspnet/fundamentals/middleware.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/fundamentals/middleware.rst b/aspnet/fundamentals/middleware.rst index ffd8762332..1a94dd7c2d 100644 --- a/aspnet/fundamentals/middleware.rst +++ b/aspnet/fundamentals/middleware.rst @@ -17,7 +17,7 @@ Middleware are software components that are assembled into an application pipeli Request delegates are configured using `Run `__, `Map `__, and `Use `__ extension methods on the `IApplicationBuilder `_ type that is passed into the ``Configure`` method in the ``Startup`` class. An individual request delegate can be specified in-line as an anonymous method, or it can be defined in a reusable class. These reusable classes are `middleware`, or `middleware components`. Each middleware component in the request pipeline is responsible for invoking the next component in the pipeline, or short-circuiting the chain if appropriate. -:doc:`/migration/http-modules` explains the difference between request pipelines in ASP.NET 5 and the previous versions and provides more middleware samples. +:doc:`/migration/http-modules` explains the difference between request pipelines in ASP.NET Core and the previous versions and provides more middleware samples. Creating a middleware pipeline with IApplicationBuilder -------------------------------------------------------