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 Constructor (Int32, Int32, Int32)

 

Initializes a new instance of the CookieContainer class with specific properties.

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

public:
CookieContainer(
	int capacity,
	int perDomainCapacity,
	int maxCookieSize
)

Parameters

capacity
Type: System::Int32

The number of Cookie instances that the CookieContainer can hold.

perDomainCapacity
Type: System::Int32

The number of Cookie instances per domain.

maxCookieSize
Type: System::Int32

The maximum size in bytes for any single Cookie in a CookieContainer.

Exception Condition
ArgumentOutOfRangeException

perDomainCapacity is not equal to MaxValue.

and

(perDomainCapacity is less than or equal to zero or perDomainCapacity is greater than capacity).

ArgumentException

maxCookieSize is less than or equal to zero.

The parameters specify values for Capacity, MaxCookieSize, and PerDomainCapacity.

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