Espera.Core.LocalSong.ClearCache C# (CSharp) Method

ClearCache() private method

private ClearCache ( ) : void
return void
        internal override void ClearCache()
        {
            if (this.IsRemovable && File.Exists(this.StreamingPath))
            {
                File.Delete(this.StreamingPath);
            }

            this.StreamingPath = null;
            this.IsCached = false;
        }