--- title: Write custom ASP.NET Core middleware author: rick-anderson description: Learn how to write custom ASP.NET Core middleware. monikerRange: '>= aspnetcore-2.1' ms.author: riande ms.custom: mvc ms.date: 5/18/2020 no-loc: [Home, Privacy, Kestrel, appsettings.json, "ASP.NET Core Identity", cookie, Cookie, Blazor, "Blazor Server", "Blazor WebAssembly", "Identity", "Let's Encrypt", Razor, SignalR] uid: fundamentals/middleware/write --- # Write custom ASP.NET Core middleware By [Rick Anderson](https://twitter.com/RickAndMSFT) and [Steve Smith](https://ardalis.com/) Middleware is software that's assembled into an app pipeline to handle requests and responses. ASP.NET Core provides a rich set of built-in middleware components, but in some scenarios you might want to write a custom middleware. > [!NOTE] > This topic describes how to write *convention-based* middleware. For an approach that uses strong typing and per-request activation, see . ## Middleware class Middleware is generally encapsulated in a class and exposed with an extension method. Consider the following middleware, which sets the culture for the current request from a query string: [!code-csharp[](write/snapshot/StartupCulture.cs)] The preceding sample code is used to demonstrate creating a middleware component. For ASP.NET Core's built-in localization support, see . Test the middleware by passing in the culture. For example, request `https://localhost:5001/?culture=no`. The following code moves the middleware delegate to a class: [!code-csharp[](write/snapshot/RequestCultureMiddleware.cs)] The middleware class must include: * A public constructor with a parameter of type . * A public method named `Invoke` or `InvokeAsync`. This method must: * Return a `Task`. * Accept a first parameter of type . Additional parameters for the constructor and `Invoke`/`InvokeAsync` are populated by [dependency injection (DI)](xref:fundamentals/dependency-injection). ## Middleware dependencies Middleware should follow the [Explicit Dependencies Principle](/dotnet/standard/modern-web-apps-azure-architecture/architectural-principles#explicit-dependencies) by exposing its dependencies in its constructor. Middleware is constructed once per *application lifetime*. See the [Per-request middleware dependencies](#per-request-middleware-dependencies) section if you need to share services with middleware within a request. Middleware components can resolve their dependencies from [dependency injection (DI)](xref:fundamentals/dependency-injection) through constructor parameters. [UseMiddleware<T>](/dotnet/api/microsoft.aspnetcore.builder.usemiddlewareextensions.usemiddleware#Microsoft_AspNetCore_Builder_UseMiddlewareExtensions_UseMiddleware_Microsoft_AspNetCore_Builder_IApplicationBuilder_System_Type_System_Object___) can also accept additional parameters directly. ## Per-request middleware dependencies Because middleware is constructed at app startup, not per-request, *scoped* lifetime services used by middleware constructors aren't shared with other dependency-injected types during each request. If you must share a *scoped* service between your middleware and other types, add these services to the `Invoke` method's signature. The `Invoke` method can accept additional parameters that are populated by DI: ```csharp public class CustomMiddleware { private readonly RequestDelegate _next; public CustomMiddleware(RequestDelegate next) { _next = next; } // IMyScopedService is injected into Invoke public async Task Invoke(HttpContext httpContext, IMyScopedService svc) { svc.MyProperty = 1000; await _next(httpContext); } } ``` [Lifetime and registration options](xref:fundamentals/dependency-injection#lifetime-and-registration-options) contains a complete sample of middleware with *scoped* lifetime services. ## Middleware extension method The following extension method exposes the middleware through : [!code-csharp[](write/snapshot/RequestCultureMiddlewareExtensions.cs)] The following code calls the middleware from `Startup.Configure`: [!code-csharp[](write/snapshot/Startup.cs?highlight=5)] ## Additional resources * [Lifetime and registration options](xref:fundamentals/dependency-injection#lifetime-and-registration-options) contains a complete sample of middleware with *scoped*, *transient*, and *singleton* lifetime services. * * * * * * *