BitcoinNET.RPCClient.BatchRPC.SendFrom C# (CSharp) Метод

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

public SendFrom ( string FromAccount, string ToBitcoinAddress, decimal Amount, int MinConf = 1, string Comment = "", string CommentTo = "" ) : uint
FromAccount string
ToBitcoinAddress string
Amount decimal
MinConf int
Comment string
CommentTo string
Результат uint
		public new uint SendFrom(string FromAccount, string ToBitcoinAddress, decimal Amount, int MinConf = 1, string Comment = "", string CommentTo = "")
		{
			uint id = NewID;
			requests.Add
				(new RPCRequest("sendfrom", new Object[] { FromAccount, ToBitcoinAddress, Amount, MinConf, Comment, CommentTo }, id));
			return id;
		}