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