Applied modified #10655 (Added Cookie (receive) support to wxHTTP)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2009-09-26 19:47:23 +00:00
parent b0a9bfc8b8
commit 906cb3f119
4 changed files with 74 additions and 2 deletions

View File

@@ -92,5 +92,17 @@ public:
This is a low level function and it assumes that you know what you are doing.
*/
void SetHeader(const wxString& header, const wxString& h_data);
/**
Returns the value of a cookie.
*/
wxString GetCookie(const wxString& cookie) const;
/**
Returns @true if there were cookies.
*/
bool HasCookies() const;
};