Put data onto the FTP server in the current directory.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnet (in edtFTPnet.dll) Version: 2.2.3.0

Syntax

C#
public virtual void Put(
	byte[] bytes,
	string remoteFile
)
Visual Basic
Public Overridable Sub Put ( _
	bytes As Byte(), _
	remoteFile As String _
)
Visual C++
public:
virtual void Put(
	array<unsigned char>^ bytes, 
	String^ remoteFile
)

Parameters

bytes
Type: array<System..::..Byte>[]()[][]
Array of bytes to put.
remoteFile
Type: System..::..String
Name of remote file in current directory.

Implements

IFileTransferClient..::..Put(array<Byte>[]()[][], String)

See Also