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, HashTreeNode parent ) |
Visual Basic |
---|
Public Sub New ( _ hash As Byte(), _ rangeStart As Long, _ rangeEnd As Long, _ parent As HashTreeNode _ ) |
Visual C++ |
---|
public: HashTreeNode( array<unsigned char>^ hash, long long rangeStart, long long rangeEnd, HashTreeNode^ parent ) |
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.
- parent
- Type: Classless.Hasher.Methods..::..HashTreeNode
The parent HashTreeNode of this node.