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

◆ IsSupportedProxyScheme()

static bool System.Net.Http.HttpUtilities.IsSupportedProxyScheme ( string scheme)
inlinestaticpackage

Definition at line 42 of file HttpUtilities.cs.

43 {
44 if (!string.Equals(scheme, "http", StringComparison.OrdinalIgnoreCase))
45 {
46 return IsSocksScheme(scheme);
47 }
48 return true;
49 }
static bool IsSocksScheme(string scheme)

References System.Net.Equals, and System.Net.Http.HttpUtilities.IsSocksScheme().

Referenced by System.Net.Http.HttpConnectionPoolManager.SendAsync().