Esempio n. 1
0
 public CachingAttribute(CachingProfiles cachingProfile, string dropCacheKey, int cacheDuration = 0)
 {
     CachingProfile = cachingProfile;
     DropCacheKey   = dropCacheKey;
     CacheDuration  = CachingProfile == CachingProfiles.Custom ? cacheDuration : (int)cachingProfile;
 }
Esempio n. 2
0
 public CachingAttribute(CachingProfiles cachingProfile, int cacheDuration = 0)
 {
     CachingProfile = cachingProfile;
     CacheDuration  = CachingProfile == CachingProfiles.Custom ? cacheDuration : (int)cachingProfile;
 }