BitSharp.Core.Domain.SpentTx.SpentTx C# (CSharp) Méthode

SpentTx() public méthode

public SpentTx ( UInt256 txHash, int confirmedBlockIndex, int txIndex, int outputCount ) : BitSharp.Common
txHash UInt256
confirmedBlockIndex int
txIndex int
outputCount int
Résultat BitSharp.Common
        public SpentTx(UInt256 txHash, int confirmedBlockIndex, int txIndex, int outputCount)
        {
            TxHash = txHash;
            ConfirmedBlockIndex = confirmedBlockIndex;
            TxIndex = txIndex;
            OutputCount = outputCount;
        }