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)
155Debug.Assert(_uris != null || _proxyConfig != null, $"{nameof(ReadNext)} must not be called on a default-initialized {nameof(MultiProxy)}."); 171Debug.Assert(_proxyConfig != null); 172if (_currentIndex < _proxyConfig.Length) 174bool hasProxy = TryParseProxyConfigPart(_proxyConfig.AsSpan(_currentIndex), _secure, manualSettingsUsed: false, out uri!, out int charactersConsumed); 177Debug.Assert(_currentIndex <= _proxyConfig.Length); 179isFinalProxy = _currentIndex == _proxyConfig.Length;