1234567891011121314151617 |
- using System.Configuration;
- using iiie.CacheControl.Business.Attributes;
- using iiie.CacheControl.Business.OutputCache;
-
- namespace CacheControl_test.Controllers
- {
- public class MyCacheOutputAttribute : TimeCacheControlAttribute
- {
- public MyCacheOutputAttribute(int seconds, bool excludeGet = false, bool excludePost = false) : base(seconds)
- {
- CacheType = OutputCacheType.DataBase;
- ExcludePostFromCacheKey = excludePost;
- ExcludeQueryStringFromCacheKey = excludeGet;
- OutputCacheData = ConfigurationManager.ConnectionStrings["ConnectionString42"].ConnectionString;
- }
- }
- }
|