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

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. }