Table of Contents

Class ThrottlingSentinelMiddleware

Namespace
Cuemon.AspNetCore.Http.Throttling
Assembly
Cuemon.AspNetCore.dll

Provides an API throttling middleware implementation for ASP.NET Core.

public class ThrottlingSentinelMiddleware : ConfigurableMiddleware<IThrottlingCache, ThrottlingSentinelOptions>, IConfigurable<ThrottlingSentinelOptions>
Inheritance
Object
ThrottlingSentinelMiddleware
Implements
Inherited Members

Constructors

ThrottlingSentinelMiddleware(RequestDelegate, IOptions<ThrottlingSentinelOptions>)

Initializes a new instance of the ThrottlingSentinelMiddleware class.

public ThrottlingSentinelMiddleware(RequestDelegate next, IOptions<ThrottlingSentinelOptions> setup)

Parameters

next RequestDelegate

The delegate of the request pipeline to invoke.

setup IOptions<ThrottlingSentinelOptions>

The ThrottlingSentinelOptions which need to be configured.

ThrottlingSentinelMiddleware(RequestDelegate, Action<ThrottlingSentinelOptions>)

Initializes a new instance of the ThrottlingSentinelMiddleware class.

public ThrottlingSentinelMiddleware(RequestDelegate next, Action<ThrottlingSentinelOptions> setup)

Parameters

next RequestDelegate

The delegate of the request pipeline to invoke.

setup Action<ThrottlingSentinelOptions>

The ThrottlingSentinelOptions which need to be configured.

Methods

InvokeAsync(HttpContext, IThrottlingCache)

public override async Task InvokeAsync(HttpContext context, IThrottlingCache di)

Parameters

context HttpContext

The context of the current request.

di IThrottlingCache

The dependency injected IThrottlingCache of InvokeAsync(HttpContext, IThrottlingCache).

Returns

Task

A task that represents the execution of this middleware.