Esempio n. 1
0
        public CacheManager(CacheFormat cacheFormat)
        {
            // Create the cache file directory
            mDirectoryPath = CacheDirectory.CreateDefaultDirect();

            // Set preferred cache format
            mCacheFormat = cacheFormat;
        }
Esempio n. 2
0
        /// <summary>
        /// Default Constructor
        /// </summary>
        public CacheManager()
        {
            // Create the cache file directory
            mDirectoryPath = CacheDirectory.CreateDefaultDirect();

            // Set default cache format
            mCacheFormat = CacheFormat.OneFile;
        }