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