BCXAPI.Providers.DefaultMemoryCache.Set C# (CSharp) Method

Set() public method

public Set ( string key, object store_me ) : bool
key string
store_me object
return bool
        public bool Set(string key, object store_me)
        {
            System.Runtime.Caching.MemoryCache.Default.Set(key, store_me, new System.Runtime.Caching.CacheItemPolicy());
            return true;
        }
DefaultMemoryCache