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

◆ IsSecure

bool System.Net.Http.HttpConnectionPool.IsSecure
get

Definition at line 180 of file HttpConnectionPool.cs.

181 {
182 get
183 {
184 if (_kind != HttpConnectionKind.Https && _kind != HttpConnectionKind.SslProxyTunnel)
185 {
186 return _kind == HttpConnectionKind.SslSocksTunnel;
187 }
188 return true;
189 }
190 }
readonly HttpConnectionKind _kind

Referenced by System.Net.Http.HttpConnectionPool.AddHttp2ConnectionAsync(), System.Net.Http.HttpConnectionPool.ConnectAsync(), and System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync().