You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICacheKeyGenerator.cs 366B

1234567891011
  1. using System.Net.Http.Headers;
  2. using System.Web.Http.Controllers;
  3. using iiie.CacheControl.Business.OutputCache;
  4. namespace iiie.CacheControl.Business.CacheKey
  5. {
  6. public interface ICacheKeyGenerator
  7. {
  8. string MakeCacheKey(HttpActionContext context, MediaTypeHeaderValue mediaType, OutputCacheType cacheType, bool excludeQueryString = false);
  9. }
  10. }