Request

Request static struct

static
struct Request {}

Members

Variables

method
string method;

method - string

namespace
string namespace;

namespace - string

Examples

auto r = Request("GET", "konnex-engine");
assert(is(typeof(r) == Request));
assert(is(typeof(r.method) == string));
assert(is(typeof(r.namespace) == string));
assert(r.method == "GET");
assert(r.namespace == "konnex-engine");

Meta