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

Remove() public method

public Remove ( string key ) : void
key string
return void
        public void Remove(string key)
        {
            File.Delete(Path.Combine(basePath, EscapeKey(key)));
        }