Click or drag to resize

WebClientCookieJar 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
public CookieContainer CookieJar { get; }

Property Value

Type: CookieContainer

Implements

IWebClientCookieJar
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