Add methods to check caching parameters

This commit is contained in:
Rodrigo Fraga 2020-03-12 00:29:36 -04:00
Родитель 69d7abdfd6
Коммит 1464a23523
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -10,6 +10,15 @@ namespace LCS.Utils
{
public class CacheUtil
{
public static bool IsCachingEnabled()
{
return Properties.Settings.Default.cachingEnabled;
}
public static bool SaveCacheToStoreEnabled()
{
return Properties.Settings.Default.keepCache;
}
public static void Add(string key, object o)
{
if (o == null)