 | FileHashIsValid(String, String) Method |
Checks if the hash for specified file has correct value.
Namespace: Limilabs.FTP.Client.HashAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic bool IsValid(
string path,
string expectedHashAsHex
)
Public Function IsValid (
path As String,
expectedHashAsHex As String
) As Boolean
public:
bool IsValid(
String^ path,
String^ expectedHashAsHex
)
member IsValid :
path : string *
expectedHashAsHex : string -> bool Parameters
- path String
- The file to compute hash for.
- expectedHashAsHex String
- Expected hash encoded as hex string (e.g.: 7BEE53C5).
Return Value
BooleanTrue if hashes match, false otherwise.
See Also