This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
1.3.0
OWIN Middleware
Introducing ThrottlingMiddleware, an OWIN middleware component that works the same as the ThrottlingHandler. With the ThrottlingMiddleware you can target endpoints outside of the WebAPI area, like OAuth middleware or SignalR endpoints.
Configuration example:
public class Startup
{
public void Configuration(IAppBuilder appBuilder)
{
//throtting middleware with policy loaded from config
appBuilder.Use(typeof(ThrottlingMiddleware),
ThrottlePolicy.FromStore(new PolicyConfigurationProvider()),
new PolicyCacheRepository(),
new CacheRepository(),
null);
}
}
More examples here