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; }
ReadOnly Property CookieJar As CookieContainer
Get
property CookieContainer^ CookieJar {
CookieContainer^ get ();
}
abstract CookieJar : CookieContainer with get
Property Value
Type:
CookieContainerRemarks
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