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

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

public TryGetTransaction ( UInt256 txHash, UnconfirmedTx &unconfimedTx ) : bool
txHash UInt256
unconfimedTx BitSharp.Core.Domain.UnconfirmedTx
Результат bool
        public bool TryGetTransaction(UInt256 txHash, out UnconfirmedTx unconfimedTx)
        {
            CheckTransaction();
            return unconfirmedTxes.Value.TryGetValue(txHash, out unconfimedTx);
        }