Skip to main content

ASP.NET Core : Implement a custom middleware component

In ASP.NET Core, a middleware component is a class that implements the IMiddleware interface or is a class that has a method named Invoke or InvokeAsync. To create a custom middleware component, you can create a new class and implement the InvokeAsync method. Here is an example of a custom middleware component that logs the request and response information:

     public class RequestResponseLoggingMiddleware

    {

        private readonly RequestDelegate _next;

 

        public RequestResponseLoggingMiddleware(RequestDelegate next)

        {

            _next = next;

        }

 

        public async Task InvokeAsync(HttpContext context)

        {

            // Log the request information

            var request = context.Request;

            Console.WriteLine($"{request.Method} {request.Path}");

            foreach (var header in request.Headers)

            {

                Console.WriteLine($"{header.Key}: {header.Value}");

            }

 

            // Call the next middleware component

            await _next(context);

 

            // Log the response information

            var response = context.Response;

            Console.WriteLine($"{response.StatusCode}");

            foreach (var header in response.Headers)

            {

                Console.WriteLine($"{header.Key}: {header.Value}");

            }

        }

    }

  To use this middleware component in your application, you need to add it to the Startup.cs Configure method, this can be done by using the UseMiddleware<T> extension method:

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)

    {

        //...

        app.UseMiddleware<RequestResponseLoggingMiddleware>();

        //...

    }

 The order in which the middleware components are added to the IApplicationBuilder is important, the order that you add the middleware to the pipeline determines the order in which it is executed. Keep in mind that if you want your middleware component to perform some operation before or after other middleware components, you should add it accordingly in the pipeline.

Alternatively you can use the app.Use method as well, it's similar to UseMiddleware but it can be used for any type of middleware, not just classes that implement IMiddleware interface.

 

Comments

Popular posts from this blog

Using of global variables in C# - Drawbacks & Solutions

How using global variables can have implications on the design, maintainability, and test-ability of C# code: Harder to understand and reason about the code:       class Program     {         public static int globalCounter = 0;         static void Main()         {             globalCounter++;             Console.WriteLine(globalCounter);         }     }   In this example, the global variable globalCounter is accessible from anywhere in the program, including the Main method. It's not clear where the value of the globalCounter is updated, it could be updated in other methods or classes, making it harder to trace the flow of data and understand the source of bugs.   More prone to errors:       class Program     {         public static string globalString;         static void Main()         {             globalString = "Hello" ;             Method1();             Method2();         }         static void Method1()         {

Task Parallel Library (TPL) and Akka.NET Alternatives

Task Parallel Library (TPL) and Akka.NET are among the most commonly used libraries for parallel and concurrent programming in the .NET ecosystem. However, there are also several other options available, depending on your specific needs: Parallel Language Integrated Query (PLINQ) is a parallel programming feature of .NET that provides an easy and efficient way to perform operations on collections in parallel. LINQ (Language Integrated Query) is a powerful feature in .NET that allows developers to work with data in a more declarative and language-integrated manner. While LINQ queries are inherently sequential, PLINQ extends LINQ by providing parallel versions of the query operators, allowing some queries to execute faster by utilizing multiple processors or cores on a machine. PLINQ is great when you are working with large collections where operations might be CPU-intensive or I/O-bound and could potentially be sped up by parallel execution. Here is a simple example of a PLI

SOLID Principles with Real World examples in C#

  SOLID Principles with Real World examples in C#   SOLID principles are formed by using S Single Responsibility Principles (SRP) O Open Closed Principle (OCP) L Liskov’s Substitution Principle (LCP) I Interface Segregation Principle (ISP) D Dependency Inversion Principle (DIP)   S Single Responsibility Principles (SRP) There should never be more than one reason for a class to change, to be precise one class should have only one responsibility Single Responsibility Principles (SRP) Real world example, A perfect match for SRP is Microservices , a Microservice will not contain functionalities other than the one it is designated to do,  Example ·                   Order Processing Service, ·                   Shipment Management Service, ·                   User Authentication Service, ·                   Catalogue List Service       class OrderProcessor     {         public void Process(Order order)         {             // Check inven