MutableRequest
class MutableRequest(val connection: Request.Connection, var method: HttpMethod, params: Map<String, String>, queryParams: Map<String, String>, headers: Map<String, List<String>>, cookies: Map<String, String>, var body: Body?, val data: MutableData = MutableData()) : Request(source)
Properties
Link copied to clipboard
Information about the connection that carried the request.
Link copied to clipboard
Any cookies sent with the request.
Link copied to clipboard
A holder of user data that can be added to this request.
Link copied to clipboard
All headers sent with the request.
Link copied to clipboard
The type of http method this call was sent with.
Link copied to clipboard
A list of key/value pairs extracted either from the user's query string or from any dynamic path parts.
Link copied to clipboard
Like params but only for the query string.