Function Request.get

Params from query string

Request.SafeAccess!(string) get() pure nothrow @property @nogc @safe const;
request.get.has("name"); // true for http://localhost:8000/page?name=hello
request.get.read("name", "blah") // returns "Karen" for http://localhost:8000/page?name=Karen
request.get.read("name", "blah") // returns "blah" for http://localhost:8000/page?test=123