Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ PerDomainCapacity

int System.Net.CookieContainer.PerDomainCapacity
getset

Definition at line 78 of file CookieContainer.cs.

79 {
80 get
81 {
83 }
84 set
85 {
86 if (value <= 0 || (value > m_maxCookies && value != int.MaxValue))
87 {
88 throw new ArgumentOutOfRangeException("value");
89 }
91 {
93 AgeCookies(null);
94 }
96 }
97 }
bool AgeCookies(string domain)