選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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