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.

class HTTPServerRequest
DictionaryList!(string, true, 8) params;

Meta