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

IOutputCache.cs 439B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace iiie.CacheControl.Business.OutputCache
  3. {
  4. public interface IOutputCache
  5. {
  6. void RemoveStartsWith(string key);
  7. T Get<T>(string key) where T : class;
  8. object Get(string key);
  9. void Remove(string key);
  10. bool Contains(string key);
  11. void Add(string key, object o, string dependsOnKey = null);
  12. IEnumerable<string> AllKeys { get; }
  13. }
  14. }