| FtpGetFileHash Method (String, FtpHashType) |
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
)
Public Function GetFileHash (
remotePath As String,
type As FtpHashType
) As Byte()
public:
array<unsigned char>^ GetFileHash(
String^ remotePath,
FtpHashType type
)
member GetFileHash :
remotePath : string *
type : FtpHashType -> byte[]
Parameters
- remotePath
- Type: SystemString
The path of the remote file. - type
- Type: Limilabs.FTP.ClientFtpHashType
Hash algorithm used.
Return Value
Type:
ByteChecksum of the specified remote file.
See Also