TileCook.DiskCache.DiskCache C# (CSharp) Method

DiskCache() public method

public DiskCache ( string directory ) : System
directory string
return System
        public DiskCache(string directory)
        {
            if (string.IsNullOrEmpty(directory))
            {
                throw new ArgumentNullException("DiskCache directory cannot be null");
            }
            this._cacheDirectory = directory;
        }