Initializes a new instance of the HashTreeNode class.
Namespace: Classless.Hasher.MethodsAssembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336
Syntax
C# |
---|
public HashTreeNode(
byte[] hash,
long rangeStart,
long rangeEnd
) |
Visual Basic |
---|
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