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

◆ DefaultProxy

IWebProxy System.Net.Http.HttpClient.DefaultProxy
staticgetset

Definition at line 39 of file HttpClient.cs.

40 {
41 get
42 {
43 return LazyInitializer.EnsureInitialized(ref s_defaultProxy, () => SystemProxyInfo.Proxy);
44 }
45 set
46 {
47 s_defaultProxy = value ?? throw new ArgumentNullException("value");
48 }
49 }
static IWebProxy s_defaultProxy
Definition HttpClient.cs:13

Referenced by System.Net.Http.HttpConnectionPoolManager.HttpConnectionPoolManager(), and System.Net.WebRequest.GetSystemWebProxy().