public CacheFile CopyToCache(CacheFile target) { return(_cache.CopyToCache(target)); }
public bool TryGetFile(string targetFilename, CacheFile parent, out Stream stream) { return(_cache.TryGetFile(targetFilename, parent, out stream)); }
public void ResetFile(CacheFile targetFile) { }
public bool TryGetCacheFile(string targetName, string parentName, out CacheFile target, bool extractIfNotCached = false) { return(_cache.TryGetCacheFile(targetName, parentName, out target, extractIfNotCached)); }
public void RemoveFileEdit(CacheFile targetFile, ITrackedAction editAction) { }