|
|
|
Location:
mhttpcookiemanager.h
class MHttpCookieManager
Supported from 7.0
Cookie manager abstract interface.
The cookie filter responds to any events in the Transport Framework for which cookie support may be required. If it finds cookies in a response, it passes them to the cookie manager, and as requests are submitted it asks the cookie manager for the cookies to be added.
A cookie manager is created, and owned, by the client using HTTP. The client specifies the manager to use when it installs the cookie filter with CCookieFilterInterface::InstallFilterL().
Defined in MHttpCookieManager:
GetCookiesL(), StoreCookieL()
virtual void StoreCookieL(CCookie* aCookie, const TUriC8& aUri)=0;
Stores a cookie.
This function is called for each cookie that is encountered in a transaction response
|
|
virtual void GetCookiesL(RHTTPTransaction aTransaction, RArray<CCookie*>& aCookieList, TBool& aCookie2Reqd)=0;
Gets the relevant cookies for a transaction.
|
|