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

◆ Proxy

IWebProxy? System.Net.WebClient.Proxy
getset

Definition at line 224 of file WebClient.cs.

225 {
226 get
227 {
228 if (!_proxySet)
229 {
230 return WebRequest.DefaultWebProxy;
231 }
232 return _proxy;
233 }
234 set
235 {
236 _proxy = value;
237 _proxySet = true;
238 }
239 }