Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
HttpNoProxy.cs
Go to the documentation of this file.
1namespace System.Net.Http;
2
3internal sealed class HttpNoProxy : IWebProxy
4{
5 public ICredentials Credentials { get; set; }
6
8 {
9 return null;
10 }
11
12 public bool IsBypassed(Uri host)
13 {
14 return true;
15 }
16}
Uri GetProxy(Uri destination)
Definition HttpNoProxy.cs:7