Click or drag to resize

FtpGetFileHash Method (String, FtpHashType, Int64, Int64)

Returns the checksum of the specified remote file. You can use FileHash class to compute or validate local file checksum.

Namespace:  Limilabs.FTP.Client
Assembly:  Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax
public byte[] GetFileHash(
	string remotePath,
	FtpHashType type,
	long start,
	long count
)

Parameters

remotePath
Type: SystemString
The path of the remote file.
type
Type: Limilabs.FTP.ClientFtpHashType
Hash algorithm used.
start
Type: SystemInt64
The offset in remote file where reading will start.
count
Type: SystemInt64
The number of bytes to read.

Return Value

Type: Byte
Checksum of the specified remote file.
See Also