Returns the checksum of the specified file on the server.

Namespace:  Rebex.Net
Assembly:  Rebex.Ftp (in Rebex.Ftp.dll)

Syntax

Visual Basic
Public Function GetChecksum ( _
	remotePath As String, _
	algorithm As ChecksumAlgorithm, _
	offset As Long, _
	count As Long _
) As Checksum
C#
public Checksum GetChecksum(
	string remotePath,
	ChecksumAlgorithm algorithm,
	long offset,
	long count
)

Parameters

remotePath
Type: System..::..String
Path of the remote file.
algorithm
Type: Rebex.IO..::..ChecksumAlgorithm
Desired checksum algorithm (server must support it - see GetSupportedChecksumAlgorithms()()()() for details).
offset
Type: System..::..Int64
The offset in remote file where reading will start.
count
Type: System..::..Int64
The maximum number of bytes to read.

Return Value

Checksum of the specified remote file.

Implements

IFtp..::..GetChecksum(String, ChecksumAlgorithm, Int64, Int64)

Remarks

Please note that not all FTP servers support checksum calculation, and not all FTP servers support all checksum algorithms.

To calculate checksums of local files, use one of GetChecksum(String, ChecksumAlgorithm, Int64, Int64) methods.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also