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

ListReceivedByAddress() public method

public ListReceivedByAddress ( int minConf, bool includeEmpty, bool includeWatchonly ) : List
minConf int
includeEmpty bool
includeWatchonly bool
return List
        public List<ListReceivedByAddressResponse> ListReceivedByAddress(int minConf, bool includeEmpty, bool? includeWatchonly)
        {
            return includeWatchonly == null
                ? _rpcConnector.MakeRequest<List<ListReceivedByAddressResponse>>(RpcMethods.listreceivedbyaddress, minConf, includeEmpty)
                : _rpcConnector.MakeRequest<List<ListReceivedByAddressResponse>>(RpcMethods.listreceivedbyaddress, minConf, includeEmpty, includeWatchonly);
        }