Table of Contents
- Introduction to Middleware in ASP.NET Core
- Middleware Lifecycle and Execution Order
- Building Custom Middleware
- Dependency Injection in Middleware
- Modifying Requests and Responses
- Exception Handling Middleware
- Performance Optimization for Middleware
- Security Considerations in Middleware
- Building Logging Middleware
- Conclusion
Introduction to Middleware in ASP.NET Core
Middleware is a fundamental concept in ASP.NET Core, responsible for processing HTTP requests and responses in a structured pipeline. It enables developers to build scalable, modular, and reusable components for handling authentication, logging, exception handling, and request modification.

Middleware Lifecycle and Execution Order
ASP.NET Core processes middleware in the order they are registered. Each middleware can perform operations before passing control to the next middleware.
app.Use(async (context, next) => { Console.WriteLine("Before Request Processing"); await next.Invoke(); Console.WriteLine("After Request Processing"); });
Building Custom Middleware
Creating custom middleware in ASP.NET Core involves implementing a class with an `Invoke` method.
public class CustomMiddleware { private readonly RequestDelegate _next; public CustomMiddleware(RequestDelegate next) { _next = next; } public async Task Invoke(HttpContext context) { Console.WriteLine("Custom Middleware Executing"); await _next(context); } }
Register the middleware in `Startup.cs`:
app.UseMiddleware<CustomMiddleware>();
Dependency Injection in Middleware
Middleware can utilize dependency injection by requesting services through the constructor.
public class LoggingMiddleware { private readonly RequestDelegate _next; private readonly ILogger<LoggingMiddleware> _logger; public LoggingMiddleware(RequestDelegate next, ILogger<LoggingMiddleware> logger) { _next = next; _logger = logger; } public async Task Invoke(HttpContext context) { _logger.LogInformation("Processing request..."); await _next(context); } }
Modifying Requests and Responses
Middleware can modify incoming requests and outgoing responses:
app.Use(async (context, next) => { context.Response.Headers.Add("X-Custom-Header", "MiddlewareHeader"); await next.Invoke(); });
Exception Handling Middleware
Handling exceptions globally improves application reliability.
app.Use(async (context, next) => { try { await next(); } catch (Exception ex) { Console.WriteLine($"Error: {ex.Message}"); context.Response.StatusCode = 500; } });
Performance Optimization for Middleware
- Minimize blocking operations
- Use caching strategies
- Optimize database interactions
Security Considerations in Middleware
Ensure middleware properly handles authentication and authorization:
app.Use(async (context, next) => { if (!context.User.Identity.IsAuthenticated) { context.Response.StatusCode = 401; return; } await next(); });
Building Logging Middleware
Logging middleware helps in monitoring application performance.
public class RequestLoggingMiddleware { private readonly RequestDelegate _next; private readonly ILogger<RequestLoggingMiddleware> _logger; public RequestLoggingMiddleware(RequestDelegate next, ILogger<RequestLoggingMiddleware> logger) { _next = next; _logger = logger; } public async Task Invoke(HttpContext context) { _logger.LogInformation($"Request: {context.Request.Method} {context.Request.Path}"); await _next(context); } }
Conclusion
Advanced ASP.NET Core middleware techniques enable developers to create highly efficient, modular, and scalable applications. Mastering middleware development ensures better performance, security, and maintainability of .NET applications.