2 writes to _proxyConfig
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\MultiProxy.cs (2)
25
_proxyConfig
= null;
35
_proxyConfig
= proxyConfig;
6 references to _proxyConfig
System.Net.Http (6)
System\Net\Http\SocketsHttpHandler\MultiProxy.cs (6)
155
Debug.Assert(_uris != null ||
_proxyConfig
!= null, $"{nameof(ReadNext)} must not be called on a default-initialized {nameof(MultiProxy)}.");
171
Debug.Assert(
_proxyConfig
!= null);
172
if (_currentIndex <
_proxyConfig
.Length)
174
bool hasProxy = TryParseProxyConfigPart(
_proxyConfig
.AsSpan(_currentIndex), _secure, manualSettingsUsed: false, out uri!, out int charactersConsumed);
177
Debug.Assert(_currentIndex <=
_proxyConfig
.Length);
179
isFinalProxy = _currentIndex ==
_proxyConfig
.Length;