The Chain of Responsibility or CoR pattern is one of the most underestimated yet powerful design patterns. It allows us to build flexible, extensible processing pipelines, just like ASP.NET Core middleware or HttpClient handlers.
How .NET Uses Chain of Responsibility?
The CoR pattern is heavily used in .NET, especially in ASP.NET Core and HttpClient.
- ASP.NET Core Middleware
- Middleware components are chained together to process HTTP requests.
- Each middleware can decide to process the request, pass it to the next middleware, or short-circuit the pipeline.
- HttpClient Handlers
- It uses a chain of HttpMessageHandler instances to process HTTP requests.
- Each handler can modify the request, pass it to the next handler, or short-circuit the pipeline.
- Validation Pipelines: Libraries like FluentValidation use a similar pattern to chain validation rules.
Delegate-Based CoR for Validation Rules
Instead of hardcoding validation logic, we dynamically add validation rules using delegate chaining.
- Define the Delegate Pipeline with Short-Circuit support.
- Dynamically Add Rules
- Validate Pipeline
How Can It Help?
- Dynamic & Extensible: Add/remove rules without modifying existing logic.
- Follows Open-Closed Principle (OCP): New rules can be added without modifying old code.
- Composable: Chain rules like ASP.NET Core middleware.
- Async-Support: Works well with async validation.
The full implementation is here.
Repo: https://lnkd.in/d5ce76Em
How do you handle validation in your system?