Table of Contents

Namespace Cuemon.AspNetCore.Infrastructure

Assembly: Cuemon.AspNetCore.dll

Build ASP.NET Core middleware without writing infrastructure boilerplate from scratch. Use this namespace when you need base types that handle middleware lifecycle, options, and pipeline integration. Start with ConfigurableMiddlewareCore<T> for middleware with options, or MiddlewareCore for simpler middleware.

Availability: .NET 10 and .NET 9

Complements: Cuemon.AspNetCore namespace 📘

Classes

ConfigurableMiddlewareCore<TOptions>

Provides an base-class for configurable middleware implementation in ASP.NET Core that supports the options pattern. This API supports the product infrastructure and is not intended to be used directly from your code.

MiddlewareCore

Provides a base-class for middleware implementation in ASP.NET Core. This API supports the product infrastructure and is not intended to be used directly from your code.