Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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