コード例 #1
0
 public static bool CanCache(Type type)
 => CacheObjectsAttribute.IsEnabled(type) ?? Database.Configuration.Cache.Enabled;
コード例 #2
0
ファイル: Cache.cs プロジェクト: markfrance/Recording-Monitor
 public static bool CanCache(Type type)
 {
     return(CacheObjectsAttribute.IsEnabled(type) ?? _IsCachingEnabled);
 }
コード例 #3
0
ファイル: Cache.cs プロジェクト: mansoorhajighare/Olive
 public static bool CanCache(Type type) => CacheObjectsAttribute.IsEnabled(type) ?? IsCachingEnabled;
コード例 #4
0
ファイル: Cache.cs プロジェクト: tohfe/Olive
 public bool IsCacheable(Type type) => CacheObjectsAttribute.IsEnabled(type) ?? ProviderConfig.Configuration.Cache.Enabled;