 | FtpUpload(String, Int64, Byte) Method |
Uploads the content of the byte array to the file on the server starting 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.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic FtpResponse Upload(
string remotePath,
long remoteStartPosition,
byte[] data
)
Public Function Upload (
remotePath As String,
remoteStartPosition As Long,
data As Byte()
) As FtpResponse
public:
FtpResponse^ Upload(
String^ remotePath,
long long remoteStartPosition,
array<unsigned char>^ data
)
member Upload :
remotePath : string *
remoteStartPosition : int64 *
data : byte[] -> FtpResponse Parameters
- remotePath String
- The path of the remote file.
- remoteStartPosition Int64
- The starting offset of the remote file.
- data Byte
- The source data.
Return Value
FtpResponseServer response send after the transfer completed.
See Also