Click or drag to resize

FtpUpload(String, Int64, Stream) Method

Uploads the content of the data stream to the file on the server from the specified remote 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.26109.1248
Syntax
public FtpResponse Upload(
	string remotePath,
	long remoteStartPosition,
	Stream source
)

Parameters

remotePath  String
The path of the remote file.
remoteStartPosition  Int64
The starting offset of the remote file.
source  Stream
The source data stream.

Return Value

FtpResponse
Server response send after the transfer completed.
See Also