您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ICacheKeyGenerator.cs 404B

123456789101112
  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,
  9. OutputCacheType cacheType, bool excludeQueryString = false, bool excludePost = false);
  10. }
  11. }