Class ApiKeySentinelMiddleware
- Namespace
- Cuemon.AspNetCore.Http.Headers
- Assembly
- Cuemon.AspNetCore.dll
Provides an API key sentinel middleware implementation for ASP.NET Core.
public class ApiKeySentinelMiddleware : ConfigurableMiddleware<ApiKeySentinelOptions>, IConfigurable<ApiKeySentinelOptions>
- Inheritance
-
ApiKeySentinelMiddleware
- Implements
- Inherited Members
Constructors
ApiKeySentinelMiddleware(RequestDelegate, IOptions<ApiKeySentinelOptions>)
Initializes a new instance of the ApiKeySentinelMiddleware class.
public ApiKeySentinelMiddleware(RequestDelegate next, IOptions<ApiKeySentinelOptions> setup)
Parameters
next
RequestDelegateThe delegate of the request pipeline to invoke.
setup
IOptions<ApiKeySentinelOptions>The UserAgentSentinelOptions which need to be configured.
ApiKeySentinelMiddleware(RequestDelegate, Action<ApiKeySentinelOptions>)
Initializes a new instance of the ApiKeySentinelMiddleware class.
public ApiKeySentinelMiddleware(RequestDelegate next, Action<ApiKeySentinelOptions> setup)
Parameters
next
RequestDelegateThe delegate of the request pipeline to invoke.
setup
Action<ApiKeySentinelOptions>The UserAgentSentinelOptions which need to be configured.
Methods
InvokeAsync(HttpContext)
Executes the UserAgentSentinelMiddleware.
public override async Task InvokeAsync(HttpContext context)
Parameters
context
HttpContextThe context of the current request.
Returns
- Task
A task that represents the execution of this middleware.