Exemple #1
0
        /// <summary>
        /// Gets a list of cached objects.
        /// </summary>
        /// <returns></returns>
        internal IList <string> GetListOfCachedKeys()
        {
            System.Collections.IDictionaryEnumerator itemsInCache = CacheProvider.GetEnumerator();
            IList <string> keysInCache = new List <string>();

            while (itemsInCache.MoveNext())
            {
                keysInCache.Add(itemsInCache.Key.ToString());
            }
            return(keysInCache);
        }