Compute the hash of multiple files

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public string ComputeHashFiles(
	FileInfo[] files,
	HexEnum style,
	CallbackEntry cbe,
	AutoResetEvent resetDemand
)
Visual Basic
Public Function ComputeHashFiles ( _
	files As FileInfo(), _
	style As HexEnum, _
	cbe As CallbackEntry, _
	resetDemand As AutoResetEvent _
) As String
Visual C++
public:
virtual String^ ComputeHashFiles(
	array<FileInfo^>^ files, 
	HexEnum style, 
	CallbackEntry^ cbe, 
	AutoResetEvent^ resetDemand
) sealed

Parameters

files
Type: array<System.IO..::..FileInfo>[]()[][]
Array of files
style
Type: LLCryptoLib.Utils..::..HexEnum
Style of text hash
cbe
Type: LLCryptoLib..::..CallbackEntry
Callback entry to call for feedback on operations
resetDemand
Type: System.Threading..::..AutoResetEvent
A reset event to call when the operation must be cancelled

Return Value

A string representing the hash code

Implements

IHash..::..ComputeHashFiles(array<FileInfo>[]()[][], HexEnum, CallbackEntry, AutoResetEvent)

See Also