BitcoinLib.BlockchainAPI.Wallet.getWalletAddress C# (CSharp) Method

getWalletAddress() public method

List all active addresses in a wallet. Also includes a 0 confirmation balance which should be used as an estimate only and will include unconfirmed transactions and possibly double spends.
public getWalletAddress ( int confirmation ) : List
confirmation int Minimum number of confirmations required. 0 for unconfirmed.
return List
        public List<Address> getWalletAddress(int confirmation = 0)
        {
            return BCw.ListAddresses(confirmation);
        }