Class for redirecting the client to a different URI. More...
#include <cgicc/HTTPRedirectHeader.h>
Public Member Functions | |
Constructor and Destructor | |
| HTTPRedirectHeader (const std::string &url) | |
| Create a new redirection header. More... | |
| HTTPRedirectHeader (const std::string &url, bool permanent) | |
| Create a new redirection header with redirect status. More... | |
| virtual | ~HTTPRedirectHeader () |
| Destructor. | |
Inherited Methods | |
| virtual void | render (std::ostream &out) const |
| Write this HTTPHeader to a stream. More... | |
Public Member Functions inherited from cgicc::HTTPHeader | |
| HTTPHeader (const std::string &data) | |
| Constructor. More... | |
| HTTPHeader (const HTTPHeader &header) | |
| Copy constructor. More... | |
| virtual | ~HTTPHeader () |
| Destructor. | |
| HTTPHeader & | setCookie (const HTTPCookie &cookie) |
| Set a cookie to go out with this HTTPResponseHeader. More... | |
| const std::vector< HTTPCookie > & | getCookies () const |
| Get a list of all cookies associated with this header. More... | |
| std::string | getData () const |
Public Member Functions inherited from cgicc::MStreamable | |
| MStreamable () | |
| Empty constructor. | |
| virtual | ~MStreamable () |
| Empty destructor. | |
Class for redirecting the client to a different URI.
Definition at line 50 of file HTTPRedirectHeader.h.
| cgicc::HTTPRedirectHeader::HTTPRedirectHeader | ( | const std::string & | url | ) |
Create a new redirection header.
| url | The redirection URL. |
| cgicc::HTTPRedirectHeader::HTTPRedirectHeader | ( | const std::string & | url, |
| bool | permanent | ||
| ) |
Create a new redirection header with redirect status.
| url | The redirection URL. |
| permanent | The status permanent or temporary |
|
virtual |
Write this HTTPHeader to a stream.
Subclasses must implement this function.
| out | The ostream to which to write. |
Implements cgicc::HTTPHeader.