Features | Detailed Description
The Cookie Manager is a component from the Clever Internet Suite library.
This component is used together with Http Client component for keeping the cookie data and managing cookies in HTTP requests and responses.
Available in .NET, VCL and ActiveX editions.
- Manage cookies in memory
- Automatic deletion of expired cookies
- Store cookies to external stream
- Can be used together with any third-party HTTP client
- Free one year upgrades and support
// [Delphi]
cookies := TclCookieList.Create(nil, TclCookieItem);
try
clCookieManager1.GetCookies(cookies, 'domain', '/urlpath/page.aspx', 80, False);
finally
cookies.Free();
end; |
// [C#]
CookieList cookies = new CookieList();
cookieManager1.GetCookies(cookies, "domain", "/urlpath/page.aspx", 80, false); |
When Purchasing the Clever Internet Suite you receive the full sources for all suite components and also free unlimited support.
|