Espera.Core.LocalSong.ClearCache C# (CSharp) Метод

ClearCache() приватный Метод

private ClearCache ( ) : void
Результат void
        internal override void ClearCache()
        {
            if (this.IsRemovable && File.Exists(this.StreamingPath))
            {
                File.Delete(this.StreamingPath);
            }

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