Make the next download resume at a specific point.

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

Syntax

C#
public void ResumeDownload(
	long offset
)
Visual Basic
Public Sub ResumeDownload ( _
	offset As Long _
)
Visual C++
public:
virtual void ResumeDownload(
	long long offset
) sealed

Parameters

offset
Type: System..::..Int64

Implements

IFileTransferClient..::..ResumeDownload(Int64)

Remarks

This resume method allows the resume offset to be set explicitly for downloads. Offset bytes are skipped before downloading the file.

Currently resume is only supported for BINARY transfers (which is generally what it is most useful for).

See Also