Initializes a new instance of the HashTreeNode class.
Namespace:
Classless.Hasher.Methods
Assembly:
Classless.Hasher (in Classless.Hasher.dll) Version: 0.8.3649.33599
Syntax
C# |
---|
public HashTreeNode(
byte[] hash,
long rangeStart,
long rangeEnd
) |
Visual Basic (Declaration) |
---|
Public Sub New ( _
hash As Byte(), _
rangeStart As Long, _
rangeEnd As Long _
) |
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