CookieContainer::Add Method (Cookie^)
Adds a Cookie to a CookieContainer. This method uses the domain from the Cookie to determine which domain collection to associate the Cookie with.
Assembly: System (in System.dll)
Parameters
- cookie
-
Type:
System.Net::Cookie^
The Cookie to be added to the CookieContainer.
| Exception | Condition |
|---|---|
| ArgumentNullException | cookie is null. |
| ArgumentException | The domain for cookie is null or the empty string (""). |
| CookieException | cookie is larger than maxCookieSize. -or- the domain for cookie is not a valid URI. |
If the Count property equals or exceeds the Capacity property, one or more Cookie instances are removed from the container before adding the cookie parameter. Enough Cookie instances are removed to bring Count below Capacity as follows: if there are expired instances in the given scope, they are cleaned up. If not, then the least recently used CookieCollection is found and removed from the container.
Available since 1.1