BitcoinNET.RPCClient.RPCRequest.RPCRequest C# (CSharp) Method

RPCRequest() public method

public RPCRequest ( string method, IList requestParams = null, uint id = 1 ) : System
method string
requestParams IList
id uint
return System
		public RPCRequest(string method, IList<Object> requestParams = null, uint id = 1)
		{
			this.method = method;
			this.requestParams = requestParams;
			this.id = id;

			String.IsNullOrEmpty(this.jsonrpc); // Suppress warning
		}
	}
RPCRequest