Exemple #1
0
 public PutioFile(PutioFsDataProvider data_provider, PutioFolder parent)
     : base(data_provider, parent)
 {
     this.Cache = new LocalFileCache(this);
 }
Exemple #2
0
 public PutioFile(PutioFsDataProvider data_provider, PutioFolder parent)
     : base(data_provider, parent)
 {
     this.Cache = new LocalFileCache(this);
 }
Exemple #3
0
 public void Initialize()
 {
     this.Finfo = new FileInfo(test_local_file);
     this.RemoteFile = new PutioFile(new PutioFsTestDataProvider(this.Finfo.Name, this.Finfo.FullName, 660, this.Finfo.Length, false, Constants.LocalStoragePath), null);
     this.Cache = new LocalFileCache(this.RemoteFile);
 }