HttpRequest

The data which the server provides to HttpRequestHandlers so that they can formulate a response.

Members

Variables

headers
string[string] headers;

An associative array containing all request headers.

method
string method;

The HTTP method verb, such as GET, POST, PUT, etc.

params
string[string] params;

An associative array containing all request params, if any were given.

url
string url;

The url of the request, excluding query parameters.

ver
int ver;

The request version.

Meta