aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 01:45:02 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 01:45:02 +0300
commit4e216a0ca8ad3608b845fa445b73034e1a67b8af (patch)
tree67e0ea698cfe5a8320aa81d8c13579e8ae6a6860 /Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem
parentf4c418cced4c6fb25ec5d4cb2bcb4ce0f766efd0 (diff)
downloadTango-4e216a0ca8ad3608b845fa445b73034e1a67b8af.tar.gz
Tango-4e216a0ca8ad3608b845fa445b73034e1a67b8af.zip
DB: Changed TechMonitors HeadZone5_6HeaterCurrent => HeadZone56HeaterCurrent
Working on insights and insights annotations. Added insights events. Added insights settings to PPC advanced settings. Added compression support for transport adapters. Implemented compression support on TCP/SignalR/WebRTC. Added Compression flag to ExternalBridge discovery packet. Added compression setting to PPC advanced settings. Refactored transport layer to use Bson instead of Json for Generic Messages. Added all SciChart referenced assemblies. Registered EF Extensions license for FSE. Added support for FSE PushTask notification cancel button.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs
index a97a44f81..32c795ffc 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs
@@ -49,9 +49,19 @@ namespace Tango.FSE.Common.FileSystem
/// </summary>
/// <param name="item">The file or folder.</param>
/// <param name="localTargetFolderOrFile">The local target folder or file.</param>
- /// <param name="isSingleFile">Indicates whether the localTargetFolder is a file.</param>
+ /// <param name="isLocaTargetFile">Indicates whether the localTargetFolder is a file.</param>
/// <returns></returns>
- Task<FileSystemHandler> Download(FileSystemItem item, String localTargetFolderOrFile, bool isSingleFile = false);
+ Task<FileSystemHandler> Download(FileSystemItem item, String localTargetFolderOrFile, bool isLocaTargetFile = false);
+
+ /// <summary>
+ /// Downloads the specified file or folder item.
+ /// </summary>
+ /// <param name="remotePath">The remote file or folder.</param>
+ /// <param name="isRemotePathFile">Indicates whether the remote path is a file.</param>
+ /// <param name="localTargetFolderOrFile">The local target folder or file.</param>
+ /// <param name="isLocalTargetFile">Indicates whether the localTargetFolder is a file.</param>
+ /// <returns></returns>
+ Task<FileSystemHandler> Download(String remotePath, bool isRemotePathFile, String localTargetFolderOrFile, bool isLocalTargetFile = false);
/// <summary>
/// Uploads the specified local file or folder.