Class ConfigurableMiddleware<TOptions>
Provides an base-class for configurable middleware implementation in ASP.NET Core that supports the options pattern.
Implements
IConfigurable<TOptions>
Namespace: Cuemon.AspNetCore
Assembly: Cuemon.AspNetCore.dll
Syntax
public abstract class ConfigurableMiddleware<TOptions> : ConfigurableMiddlewareCore<TOptions>, IConfigurable<TOptions> where TOptions : class, new()
Type Parameters
| Name | Description |
|---|---|
| TOptions | The type of the options to setup. |
Constructors
| Improve this DocConfigurableMiddleware(RequestDelegate, IOptions<TOptions>)
Initializes a new instance of the ConfigurableMiddleware<TOptions> class.
Declaration
protected ConfigurableMiddleware(RequestDelegate next, IOptions<TOptions> setup)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.AspNetCore.Http.RequestDelegate | next | The delegate of the request pipeline to invoke. |
| Microsoft.Extensions.Options.IOptions<TOptions> | setup | The Microsoft.Extensions.Options.IOptions<TOptions> which need to be configured. |
ConfigurableMiddleware(RequestDelegate, Action<TOptions>)
Initializes a new instance of the ConfigurableMiddleware<TOptions> class.
Declaration
protected ConfigurableMiddleware(RequestDelegate next, Action<TOptions> setup)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.AspNetCore.Http.RequestDelegate | next | The delegate of the request pipeline to invoke. |
| System.Action<TOptions> | setup | The System.Action<T> which need to be configured. |
Methods
| Improve this DocInvokeAsync(HttpContext)
Executes the Middleware.
Declaration
public abstract Task InvokeAsync(HttpContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.AspNetCore.Http.HttpContext | context | The context of the current request. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task | A task that represents the execution of this middleware. |