Interface IFileTransferOptions
- Assembly
- Datamine.MineTrustConnector.Service.Extensibility.dll
Abstraction over the options applicable to file transfer scenarios
public interface IFileTransferOptions
Properties
CompressionThresholdMB
Gets or sets the minimum threshold, in MB, which causes MT Connector to compress files before synchronising them. Setting this value too low may result in negative performance affects since it will be more expensive to zip up and subsequently unpack even small files. Setting this value to high may result in slow upload of larger files.
int? CompressionThresholdMB { get; set; }
Property Value
- int?
-
The compression threshold mb.
TemporaryDownloadsFolder
Gets or sets the temporary downloads folder which is used when downloading files via the file transfer service. Default behaviour is to use the users's temporary packages folder if not specified
string? TemporaryDownloadsFolder { get; set; }
Property Value
- string
-
The temporary downloads folder.
