Bitnet.Client.BitnetClient.SendFrom C# (CSharp) Method

SendFrom() public method

public SendFrom ( string a_fromAccount, string a_toAddress, float a_amount, int a_minconf = 1, string a_comment = "", string a_commentTo = "" ) : string
a_fromAccount string
a_toAddress string
a_amount float
a_minconf int
a_comment string
a_commentTo string
return string
        public string SendFrom(
            string a_fromAccount,
            string a_toAddress,
            float a_amount,
            int a_minconf = 1,
            string a_comment = "",
            string a_commentTo = ""
            )
        {
            return InvokeMethod(
            "sendfrom",
            a_fromAccount,
            a_toAddress,
            a_amount,
            a_minconf,
            a_comment,
            a_commentTo
              )["result"].ToString();
        }