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

◆ IsBypassed()

bool System.Net.WebProxy.IsBypassed ( Uri host)
inline

Implements System.Net.IWebProxy.

Definition at line 226 of file WebProxy.cs.

227 {
228 if (host == null)
229 {
230 throw new ArgumentNullException("host");
231 }
232 if (!(Address == null) && (!BypassProxyOnLocal || !IsLocal(host)))
233 {
235 }
236 return true;
237 }
bool IsLocal(Uri host)
Definition WebProxy.cs:260
bool IsMatchInBypassList(Uri input)
Definition WebProxy.cs:180

References System.Net.WebProxy.Address, System.Net.WebProxy.BypassProxyOnLocal, System.Runtime.Serialization.Dictionary, System.Net.WebProxy.IsLocal(), and System.Net.WebProxy.IsMatchInBypassList().

Referenced by System.Net.WebProxy.GetProxy().