C# Class BitSharp.Core.Domain.TxLookupKey

Represents a lookup key to locate a transaction within a block.
Afficher le fichier Open project: pmlyon/BitSharp Class Usage Examples

Méthodes publiques

Méthode Description
Equals ( object obj ) : bool
GetHashCode ( ) : int
TxLookupKey ( UInt256 blockHash, int txIndex ) : BitSharp.Common

Initializes a new instance of TxLookupKey with the specified block hash and transaction index.

Method Details

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

TxLookupKey() public méthode

Initializes a new instance of TxLookupKey with the specified block hash and transaction index.
public TxLookupKey ( UInt256 blockHash, int txIndex ) : BitSharp.Common
blockHash UInt256 The hash of the block containing the transaction.
txIndex int The index of the transaction within its block.
Résultat BitSharp.Common