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

SendFrom() public method

public SendFrom ( string fromAccount, string toBitcoinAddress, decimal amount, int minConf, string comment, string commentTo ) : string
fromAccount string
toBitcoinAddress string
amount decimal
minConf int
comment string
commentTo string
return string
        public string SendFrom(string fromAccount, string toBitcoinAddress, decimal amount, int minConf, string comment, string commentTo)
        {
            return _rpcConnector.MakeRequest<string>(RpcMethods.sendfrom, fromAccount, toBitcoinAddress, amount, minConf, comment, commentTo);
        }