Variable HTTPServerRequest.params
A map of general parameters for the request.
This map is supposed to be used by middleware functionality to store
information for later stages. For example vibe.http.router.URLRouter
uses this map
to store the value of any named placeholders.
Declaration
class HTTPServerRequest
{
// ...
string[string]
params;
// ...
}
Authors
Sönke Ludwig, Jan Krüger, Ilya Shipunov
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.