edtFTPnet/Free - Open-source FTP component for .NET | Download
Upload an array of bytes to the FTP server in the current working directory.

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

Syntax

C#
public virtual void UploadByteArray(
	byte[] bytes,
	string remoteFile
)
Visual Basic
Public Overridable Sub UploadByteArray ( _
	bytes As Byte(), _
	remoteFile As String _
)
Visual C++
public:
virtual void UploadByteArray(
	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 working directory.

See Also