Alexandria.Client.Infrastructure.PersistentCache.PersistentCache C# (CSharp) Method

PersistentCache() public method

public PersistentCache ( string basePath ) : System
basePath string
return System
        public PersistentCache(string basePath)
        {
            this.basePath = basePath;
            if (Directory.Exists(basePath) == false)
                Directory.CreateDirectory(basePath);
        }