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

GetTxOut() public method

public GetTxOut ( string txId, int n, bool includeMemPool ) : GetTransactionResponse
txId string
n int
includeMemPool bool
return GetTransactionResponse
        public GetTransactionResponse GetTxOut(string txId, int n, bool includeMemPool)
        {
            return _rpcConnector.MakeRequest<GetTransactionResponse>(RpcMethods.gettxout, txId, n, includeMemPool);
        }