Class 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.
Inheritance
System.Object
ConfigurableMiddlewareCore<TOptions>
Implements
IConfigurable<TOptions>
Inherited Members
Namespace: Cuemon.AspNetCore.Infrastructure
Assembly: Cuemon.AspNetCore.dll
Syntax
public abstract class ConfigurableMiddlewareCore<TOptions> : MiddlewareCore, IConfigurable<TOptions> where TOptions : class, new()
Type Parameters
Name | Description |
---|---|
TOptions | The type of the options to setup. |
Properties
| Improve this DocOptions
Gets the configured options of this Middleware.
Declaration
public TOptions Options { get; }
Property Value
Type | Description |
---|---|
TOptions | The configured options of this Middleware. |