BitSharper.WalletCoinsReceivedEventArgs.WalletCoinsReceivedEventArgs C# (CSharp) Метод

WalletCoinsReceivedEventArgs() публичный Метод

public WalletCoinsReceivedEventArgs ( Transaction tx, ulong prevBalance, ulong newBalance ) : System
tx Transaction The transaction which sent us the coins.
prevBalance ulong Balance before the coins were received.
newBalance ulong Current balance of the wallet.
Результат System
        public WalletCoinsReceivedEventArgs(Transaction tx, ulong prevBalance, ulong newBalance)
        {
            Tx = tx;
            PrevBalance = prevBalance;
            NewBalance = newBalance;
        }
WalletCoinsReceivedEventArgs