BitSharper.Wallet.GetBalance C# (CSharp) Méthode

GetBalance() public méthode

Returns the available balance of this wallet. See BalanceType.Available for details on what this means.
Note: the estimated balance is usually the one you want to show to the end user - however attempting to actually spend these coins may result in temporary failure. This method returns how much you can safely provide to CreateSend(Address, ulong).
public GetBalance ( ) : ulong
Résultat ulong
        public ulong GetBalance()
        {
            lock (this)
            {
                return GetBalance(BalanceType.Available);
            }
        }

Same methods

Wallet::GetBalance ( BalanceType balanceType ) : ulong