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

ListTransactions() public method

public ListTransactions ( string account, int count, int from, bool includeWatchonly ) : List
account string
count int
from int
includeWatchonly bool
return List
        public List<ListTransactionsResponse> ListTransactions(string account, int count, int from, bool? includeWatchonly)
        {
            return includeWatchonly == null
                ? _rpcConnector.MakeRequest<List<ListTransactionsResponse>>(RpcMethods.listtransactions, (string.IsNullOrWhiteSpace(account) ? "*" : account), count, from)
                : _rpcConnector.MakeRequest<List<ListTransactionsResponse>>(RpcMethods.listtransactions, (string.IsNullOrWhiteSpace(account) ? "*" : account), count, from, includeWatchonly);
        }