Returns the checksum of the specified file on the server.

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

Syntax

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

Parameters

remotePath
Type: System..::..String
Path of the remote file.
algorithm
Type: Rebex.IO..::..ChecksumAlgorithm
Desired checksum algorithm (server must support it).

Return Value

Checksum of the specified remote file.

Implements

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

Remarks

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

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also