Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

MyCacheOutputAttribute.cs 651B

1234567891011121314151617
  1. using System.Configuration;
  2. using iiie.CacheControl.Business.Attributes;
  3. using iiie.CacheControl.Business.OutputCache;
  4. namespace CacheControl_test.Controllers
  5. {
  6. public class MyCacheOutputAttribute : TimeCacheControlAttribute
  7. {
  8. public MyCacheOutputAttribute(int seconds, bool excludeGet = false, bool excludePost = false) : base(seconds)
  9. {
  10. CacheType = OutputCacheType.DataBase;
  11. ExcludePostFromCacheKey = excludePost;
  12. ExcludeQueryStringFromCacheKey = excludeGet;
  13. OutputCacheData = ConfigurationManager.ConnectionStrings["ConnectionString42"].ConnectionString;
  14. }
  15. }
  16. }