stefanprodan / WebApiThrottle

ASP.NET Web API rate limiter for IIS and Owin hosting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue while using Route attribute

SrinivasanSoundarrajan opened this issue · comments

Throttling is not at all considered when an action method have Route (System.Web.Http) attribute.
Is there any way to overcome this ?

OK Found a quick workaround.
Avoid using Route attribute at action methods.
Instead use RoutePrefix at Controller level.
But still I need to use Route at action methods due to complex url format that I need to support.
Any solution for this ?