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

BlockHeader() public méthode

public BlockHeader ( UInt32 version, UInt256 previousBlock, UInt256 merkleRoot, DateTimeOffset time, UInt32 bits, UInt32 nonce, UInt256 hash ) : BitSharp.Common
version System.UInt32
previousBlock UInt256
merkleRoot UInt256
time DateTimeOffset
bits System.UInt32
nonce System.UInt32
hash UInt256
Résultat BitSharp.Common
        public BlockHeader(UInt32 version, UInt256 previousBlock, UInt256 merkleRoot, DateTimeOffset time, UInt32 bits, UInt32 nonce, UInt256 hash)
        {
            Version = version;
            PreviousBlock = previousBlock;
            MerkleRoot = merkleRoot;
            Time = time;
            Bits = bits;
            Nonce = nonce;
            Hash = hash;
        }