IWebClientAddingCookie Event |
Occurs when a cookie is added to the
CookieJar.
Namespace:
NScrape
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax event EventHandler<AddingCookieEventArgs> AddingCookie
Event AddingCookie As EventHandler(Of AddingCookieEventArgs)
event EventHandler<AddingCookieEventArgs^>^ AddingCookie {
void add (EventHandler<AddingCookieEventArgs^>^ value);
void remove (EventHandler<AddingCookieEventArgs^>^ value);
}
abstract AddingCookie : IEvent<EventHandler<AddingCookieEventArgs>,
AddingCookieEventArgs>
Value
Type:
SystemEventHandlerAddingCookieEventArgsRemarks
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.
See Also