Uploads all images in buffer to the FTP server as a Multi-Page TIFF.
Namespace: Dynamsoft.DotNet.TWAINAssembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax
| C# |
|---|
public bool FTPUploadAllAsMultiPageTIFF(
string strFTPServer,
string strFileName
) |
| Visual Basic |
|---|
Public Function FTPUploadAllAsMultiPageTIFF ( _
strFTPServer As String, _
strFileName As String _
) As Boolean |
Parameters
- strFTPServer
- Type: System..::..String
The name of the FTP server.
- strFileName
- Type: System..::..String
The name of the image to be uploaded. It should be a relative path on the FTP server.
Return Value
True indicates success. False indicates failure.
Remarks
Exceptions
| Exception | Condition |
|---|
| Dynamsoft.DotNet.TWAIN..::..TwainException |
When an error occurs and IfThrowException property is true, an exception will be thrown.
When IfThrowException property is false, please check ErrorCode and ErrorString.
|
See Also