Lines Matching refs:Request
41 // POST request using multipart/form-data request.
71 // A class that represents the HTTP request data.
72 class LIBWEBSERV_EXPORT Request {
74 Request(const std::string& url, const std::string& method)
76 virtual ~Request() = default;
78 // Gets the request body data stream. Note that the stream is available
81 // "multipart/form-data"). If there is no request body, or the data has been
83 // The stream returned is valid for as long as the Request object itself is
84 // alive. Accessing the stream after the Request object is destroyed will lead
88 // Returns the request path (e.g. "/path/document").
91 // Returns the request method (e.g. "GET", "POST", etc).
108 // the POST request.
112 // values provided on the URL and as part of form data in POST request.
116 // request.
125 // Returns a list of key-value pairs for all the request headers.
128 // Returns the value(s) of a request header of given |name|.
131 // Returns the value of a request header of given |name|. If there are more
133 // An empty string is returned if the header does not exist in the request.