Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CookieContainer::Add Method (CookieCollection^)

 

Adds the contents of a CookieCollection to the CookieContainer.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
void Add(
	CookieCollection^ cookies
)

Parameters

cookies
Type: System.Net::CookieCollection^

The CookieCollection to be added to the CookieContainer.

Exception Condition
ArgumentNullException

cookies is null.

If the Count property equals the Capacity property, one or more Cookie instances are removed from the container before adding the contents of the cookies parameter. Enough Cookie instances are removed to make room for cookies as follows: if there are expired instances, they are cleaned up. If not, or if more room is needed, then the least recently used CookieCollection is found and removed from the container.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft