BitcoinLib.Services.CoinService.GetBlock C# (CSharp) Method

GetBlock() public method

public GetBlock ( string hash, bool verbose ) : GetBlockResponse
hash string
verbose bool
return GetBlockResponse
        public GetBlockResponse GetBlock(string hash, bool verbose)
        {
            return _rpcConnector.MakeRequest<GetBlockResponse>(RpcMethods.getblock, hash, verbose);
        }