Microsoft Agent Frameworks' Agent Middleware with .NET
Explains how to use Microsoft Agent Framework's middleware in .NET to intercept agent runs, function calls, and chat client calls.
Explains how to use Microsoft Agent Framework's middleware in .NET to intercept agent runs, function calls, and chat client calls.
ASP.NET Core 10 improves middleware and endpoint routing separation, making authentication and authorization more predictable by handling routing implicitly.
Explains rate limiting strategies in ASP.NET Core, including fixed window, sliding window, token bucket, and concurrency limiters.
Analyzes a subtle data race bug in a Go web server middleware, explaining the cause and fix for a concurrency issue without typical synchronization constructs.
Learn how to organize routes in a Vapor app using RouteCollection, middleware layering, and controller-based routing for cleaner code.
Guide on integrating ASP.NET Core middleware into Azure Functions HTTP triggers to use familiar HttpRequest, HttpResponse, and IActionResult objects.
Explains how to implement automatic span linking for internal redirects in ASP.NET Core using middleware on .NET 9 for improved OpenTelemetry tracing.
Explores new Problem Details enhancements in ASP.NET 9 for better error handling and response customization in HTTP APIs.
A guide to centralizing CancellationToken management in ASP.NET using a middleware service to reduce repetitive code.
Exploring Go middleware, request context, and database usage with the standard library, continuing a series on building web apps.
A developer creates a custom middleware proxy to paginate Kagi's large Small Web RSS feed, making it usable in their Miniflux reader.
Exploring Go's standard library features like JSON, templates, and static file embedding for SaaS development.
A guide to implementing and configuring health checks in ASP.NET Core applications, including database monitoring with Entity Framework Core.
Explains HSTS (HTTP Strict Transport Security), its role in ASP.NET Core apps for enforcing HTTPS, and configuration considerations.
An introduction to middleware in web frameworks, covering its purpose, common use cases like authentication, and practical examples from JavaScript/TypeScript ecosystems.
Explains how to implement global endpoint filters for ASP.NET Core Minimal APIs, offering a cleaner alternative to middleware.
A tutorial on building a minimal clone of ASP.NET Core from scratch to understand its core concepts like the web server, controllers, and middleware.
A guide on integrating WebSockets into a Redux application using custom middleware for state management.
Explains what middleware is in ASP.NET Core, its role in the request pipeline, and provides a practical implementation example.
Explains three methods to create custom middleware in ASP.NET Core: using Request Delegates, by convention, and factory-based.