Click or drag to resize

IWebClientCookieJar Property

Gets the cookies that have been collected by the WebClient in the course of executing requests.

Namespace:  NScrape
Assembly:  NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax
CookieContainer CookieJar { get; }

Property Value

Type: CookieContainer
Remarks
As the WebClient executes requests and receives cookies from the server in response, it stores them in its cookie jar (a CookieContainer) and sends them along on subsequent requests.

To be notified when a cookie is added to the jar, subscribe to the AddingCookie event.
See Also