I\'m trying to cache the output of an ApiController method in Web API.
Here\'s the controller code:
public class TestController : ApiController {
WebAPI does not have any built in support for the [OutputCache] attribute. Take a look at this article to see how you could implement this feature yourself.
[OutputCache]