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 iiie.CacheControl.DBO;
  2. namespace iiie.CacheControl.Business.OutputCache
  3. {
  4. public abstract class IOutputCache
  5. {
  6. public abstract CacheDbo Get(string key);
  7. public abstract void Remove(string key);
  8. public abstract bool Contains(string key);
  9. public abstract void Add(string key, CacheDbo o);
  10. }
  11. }