Reflection
TransferAutoDetectScanExtensionList Property


This property affects file transfers using the Auto-Detect transfer feature.
Syntax
'Declaration
 
Property TransferAutoDetectScanExtensionList As String
'Usage
 
Dim instance As IFileTransfer
Dim value As String
 
instance.TransferAutoDetectScanExtensionList = value
 
value = instance.TransferAutoDetectScanExtensionList
string TransferAutoDetectScanExtensionList {get; set;}

Property Value

The default value is "". Use "<>" to specify files with no file extension. Use commas to separate file extensions included in the string. Do not include periods with the file extensions. The string can be up to 259 characters long.
Remarks
It returns or specifies extensions for files that you want Reflection to scan to determine an appropriate file transfer type. This example tells Reflection to scan all files with *.bak file extensions as well as all files with no file extension. FileTransfer.TransferAutoDetectScanExtensionList = "bak,<>" If you want Reflection to scan all files whose extensions have not been linked to a particular transfer type, you can use TransferAutoDetectDefaultType. Use TransferAutoDetectASCIIExtensionList, TransferAutoDetectBinaryExtensionList, and TransferAutoDetectImageLabelsExtensionList, to determine file extensions to be linked to other transfer types. The default value is "". Use "<>" to specify files with no file extension. Use commas to separate file extensions included in the string. Do not include periods with the file extensions. The string can be up to 259 characters long.
See Also