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; }
Public ReadOnly Property CookieJar As CookieContainer
Get
public:
virtual property CookieContainer^ CookieJar {
CookieContainer^ get () sealed;
}
abstract CookieJar : CookieContainer with get
override CookieJar : CookieContainer with get
Property Value
Type:
CookieContainerImplements
IWebClientCookieJarRemarks
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