This class wraps an HTTP request, which is basically : More...
#include <Http.hpp>
Public Types | |
enum | Method { Get, Post, Head } |
Enumerate the available HTTP methods for a request. More... | |
Public Member Functions | |
Request (Method RequestMethod=Get, const std::string &URI="/", const std::string &Body="") | |
Default constructor. More... | |
void | SetField (const std::string &Field, const std::string &Value) |
Set the value of a field; the field is added if it doesn't exist. More... | |
void | SetMethod (Method RequestMethod) |
Set the request method. More... | |
void | SetURI (const std::string &URI) |
Set the target URI of the request. More... | |
void | SetHttpVersion (unsigned int Major, unsigned int Minor) |
Set the HTTP version of the request. More... | |
void | SetBody (const std::string &Body) |
Set the body of the request. More... | |
Friends | |
class | Http |
This class wraps an HTTP request, which is basically :
void sf::Http::Request::SetBody | ( | const std::string & | Body | ) |
Set the body of the request.
This parameter is optional and makes sense only for POST requests. This parameter is empty by default
Body | : Content of the request body |
This parameter is optional and makes sense only for POST requests. This parameter is empty by default
void sf::Http::Request::SetField | ( | const std::string & | Field, |
const std::string & | Value | ||
) |
void sf::Http::Request::SetHttpVersion | ( | unsigned int | Major, |
unsigned int | Minor | ||
) |
void sf::Http::Request::SetMethod | ( | Method | RequestMethod | ) |
Set the request method.
This parameter is Http::Request::Get by default
RequestMethod | : Method to use for the request |
This parameter is Get by default
void sf::Http::Request::SetURI | ( | const std::string & | URI | ) |