| FtpUpload Method (String, Stream) |
Uploads the content of the data stream to the file on the server.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public FtpResponse Upload(
string remotePath,
Stream source
)
Public Function Upload (
remotePath As String,
source As Stream
) As FtpResponse
public:
FtpResponse^ Upload(
String^ remotePath,
Stream^ source
)
member Upload :
remotePath : string *
source : Stream -> FtpResponse
Parameters
- remotePath
- Type: SystemString
The path of the remote file. - source
- Type: System.IOStream
The source data stream.
Return Value
Type:
FtpResponseServer response send after the transfer completed.
See Also