Initializes a new instance of the HashNode class.

Namespace: Classless.Hasher.Methods
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
public HashNode(
	byte[] hash,
	long rangeStart,
	long rangeEnd
)
Visual Basic
Public Sub New ( _
	hash As Byte(), _
	rangeStart As Long, _
	rangeEnd As Long _
)
Visual C++
public:
HashNode(
	array<unsigned char>^ hash, 
	long long rangeStart, 
	long long rangeEnd
)

Parameters

hash
Type: array<System..::..Byte>[]()[][]
The hash of the data represented by this node.
rangeStart
Type: System..::..Int64
The index of the beginning of the range of data represented by this node.
rangeEnd
Type: System..::..Int64
The index of the end of the range of data represented by this node.

See Also