Set the REST marker so that the next transfer doesn't start at the beginning of the remote file

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

Syntax

C#
public void Restart(
	long size
)
Visual Basic
Public Sub Restart ( _
	size As Long _
)
Visual C++
public:
void Restart(
	long long size
)

Parameters

size
Type: System..::..Int64
the REST param, the mark at which the restart is performed on the remote file. For STOR, this is retrieved by SIZE

Remarks

Issue the RESTart command to the remote server. This indicates the byte position that REST is performed at. For put, bytes start at this point, while for get, bytes are fetched from this point.

See Also