BitSharp.Core.Storage.CoreStorage.TryGetTransaction C# (CSharp) Метод

TryGetTransaction() публичный Метод

public TryGetTransaction ( UInt256 blockHash, int txIndex, BlockTx &transaction ) : bool
blockHash UInt256
txIndex int
transaction BitSharp.Core.Domain.BlockTx
Результат bool
        public bool TryGetTransaction(UInt256 blockHash, int txIndex, out BlockTx transaction)
        {
            return this.blockTxesStorage.Value.TryGetTransaction(blockHash, txIndex, out transaction);
        }