BitSharp.Core.BlockProvider.GetBlock C# (CSharp) Méthode

GetBlock() public méthode

public GetBlock ( UInt256 hash ) : BitSharp.Core.Domain.Block
hash UInt256
Résultat BitSharp.Core.Domain.Block
        public Block GetBlock(UInt256 hash)
        {
            var name = hashNames[hash];
            if (name == null)
                return null;

            return GetEntry(name);
        }

Same methods

BlockProvider::GetBlock ( int height ) : BitSharp.Core.Domain.Block