C# 클래스 BitSharp.Core.Domain.TxLookupKey

Represents a lookup key to locate a transaction within a block.
파일 보기 프로젝트 열기: pmlyon/BitSharp 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Equals() 공개 메소드

public Equals ( object obj ) : bool
obj object
리턴 bool

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

TxLookupKey() 공개 메소드

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.
리턴 BitSharp.Common