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

◆ MaxCookieSize

int System.Net.CookieContainer.MaxCookieSize
getset

Definition at line 62 of file CookieContainer.cs.

63 {
64 get
65 {
66 return m_maxCookieSize;
67 }
68 set
69 {
70 if (value <= 0)
71 {
72 throw new ArgumentOutOfRangeException("value");
73 }
75 }
76 }