Пример #1
0
        private void GetFileAndStoreInCache(string path, IFileTransferService service)
        {
            Stream content = service.GetFileStream(path);

            _fileCache.StoreFile(path, content);
        }
 private void GetFileAndStoreInCache(string path, IFileTransferService service)
 {
     Stream content = service.GetFileStream(path);
     _fileCache.StoreFile(path, content);
 }