From 4e216a0ca8ad3608b845fa445b73034e1a67b8af Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 19 Aug 2020 01:45:02 +0300 Subject: 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. --- .../FSE/Tango.FSE.Common/FileSystem/IFileSystemProvider.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/FileSystem') 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 /// /// The file or folder. /// The local target folder or file. - /// Indicates whether the localTargetFolder is a file. + /// Indicates whether the localTargetFolder is a file. /// - Task Download(FileSystemItem item, String localTargetFolderOrFile, bool isSingleFile = false); + Task Download(FileSystemItem item, String localTargetFolderOrFile, bool isLocaTargetFile = false); + + /// + /// Downloads the specified file or folder item. + /// + /// The remote file or folder. + /// Indicates whether the remote path is a file. + /// The local target folder or file. + /// Indicates whether the localTargetFolder is a file. + /// + Task Download(String remotePath, bool isRemotePathFile, String localTargetFolderOrFile, bool isLocalTargetFile = false); /// /// Uploads the specified local file or folder. -- cgit v1.3.1