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

◆ CookieContainer

CookieContainer System.Net.Http.HttpClientHandler.CookieContainer
getset

Definition at line 44 of file HttpClientHandler.cs.

45 {
46 get
47 {
49 }
50 set
51 {
52 if (value == null)
53 {
54 throw new ArgumentNullException("value");
55 }
56 _underlyingHandler.CookieContainer = value;
57 }
58 }
readonly SocketsHttpHandler _underlyingHandler