Encodes the request into a string.
auto request = new Request(Request.GET, "index.html", ["Connection": "Keep-Alive"]); assert(request.toString() == "GET /index.html HTTP/1.1\r\nConnection: Keep-Alive\r\n");
See Implementation
Encodes the request into a string.