All you need to do is get Access to the HttpResponseMessage object of the request. You can do this inside a controller action by asking the Request property of the controller to create the response for you:
var response = Request.CreateResponse(HttpStatusCode.OK);
Then you can access the CacheControl object via the Headers like so:
response.Headers.CacheControl = new CacheControlHeaderValue
{
Public = true, MaxAge = TimeSpan.FromMinutes(5)
};
You could also make use of an ActionFilter in this scenario, so caching can be applied to an ApiController Action method via an attribute:
public class HttpCacheForMinutesAttribute : ActionFilterAttribute
{
private readonly int _duration;
public HttpCacheForMinutesAttribute(int duration)
{
_duration = duration;
}
public override void OnActionExecuted(HttpActionExecutedContext actionExecutedContext)
{
base.OnActionExecuted(actionExecutedContext);
actionExecutedContext.Response.Headers.CacheControl = new CacheControlHeaderValue
{
Public = true, MaxAge = TimeSpan.FromMinutes(_duration)
};
}
}