| FtpDownload Method (String, Int64) |
Downloads the remote file starting from the specified position.
You can check the value of
SupportsRestStream of
Extensions property to check if this method is supported by the remote server.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public byte[] Download(
string remotePath,
long remoteStartPosition
)
Public Function Download (
remotePath As String,
remoteStartPosition As Long
) As Byte()
public:
array<unsigned char>^ Download(
String^ remotePath,
long long remoteStartPosition
)
member Download :
remotePath : string *
remoteStartPosition : int64 -> byte[]
Parameters
- remotePath
- Type: SystemString
The path of the remote file. - remoteStartPosition
- Type: SystemInt64
The starting offset of the remote file.
Return Value
Type:
ByteDownloaded data.
See Also