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.

FileOuputCache.cs 942B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. namespace iiie.CacheControl.Business.OutputCache
  4. {
  5. public class FileOuputCache : IOutputCache
  6. {
  7. public void RemoveStartsWith(string key)
  8. {
  9. throw new NotImplementedException();
  10. }
  11. public T Get<T>(string key) where T : class
  12. {
  13. throw new NotImplementedException();
  14. }
  15. public object Get(string key)
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public void Remove(string key)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public bool Contains(string key)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public void Add(string key, object o, string dependsOnKey = null)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. public IEnumerable<string> AllKeys { get; private set; }
  32. }
  33. }