C# Class BitSharp.Core.Domain.TxLookupKey

Represents a lookup key to locate a transaction within a block.
ファイルを表示 Open project: pmlyon/BitSharp Class Usage Examples

Public Methods

Method 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 method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

TxLookupKey() public method

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.
return BitSharp.Common