CookieContainer.Add Method (Uri, CookieCollection)
Adds the contents of a CookieCollection to the CookieContainer for a particular URI.
Namespace: System.Net
Assembly: System (in System.dll)
Parameters
- uri
- Type: System.Uri
The URI of the CookieCollection to be added to the CookieContainer.
- cookies
- Type: System.Net.CookieCollection
The CookieCollection to be added to the CookieContainer.
| Exception | Condition |
|---|---|
| ArgumentNullException | cookies is null. |
| ArgumentException | The domain for one of the cookies in cookies is null. |
| CookieException | One of the cookies in cookies contains an invalid domain. |
If you add a Cookie instance for just one specific host, do not set the Domain property of the Cookie instance. This is set automatically, based on the URI.
If your URI corresponds to your local domain and sends to all the hosts on the local domain, set the Cookie Domain property equal to ".local". Otherwise, make sure it matches the host name used in the URI.
If Count equals Capacity, one or more Cookie instances is 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 scope they are cleaned up. If not, then the least recently used CookieCollection is found and removed from the container.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.