зеркало из https://github.com/microsoft/2LCS.git
Add methods to check caching parameters
This commit is contained in:
Родитель
69d7abdfd6
Коммит
1464a23523
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче