Used to create an auto-implemented Http Rpc client from an interface.
interface IAPI { void send(string data); } auto client = new HttpJsonRpcAutoClient!IAPI("http://127.0.0.1:8080/rpc_2"); client.send("data");
See Implementation
Used to create an auto-implemented Http Rpc client from an interface.