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.

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