1 write to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
147_httpConnectionOptions = httpConnectionOptions;
25 references to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (25)
HttpConnection.cs (25)
149_url = _httpConnectionOptions.Url; 186return StartAsync(_httpConnectionOptions.DefaultTransferFormat, cancellationToken); 308_accessTokenProvider = _httpConnectionOptions.AccessTokenProvider; 312if (_httpConnectionOptions.SkipNegotiation) 314if (_httpConnectionOptions.Transports == HttpTransportType.WebSockets) 316Log.StartingTransport(_logger, _httpConnectionOptions.Transports, uri); 317await StartTransport(uri, _httpConnectionOptions.Transports, transferFormat, cancellationToken, useStatefulReconnect: false).ConfigureAwait(false); 387if ((transportType & _httpConnectionOptions.Transports) == 0) 403_httpConnectionOptions.UseStatefulReconnect = transportType == HttpTransportType.WebSockets ? _httpConnectionOptions.UseStatefulReconnect : false; 461if (_httpConnectionOptions.UseStatefulReconnect) 555if (_httpConnectionOptions != null) 560if (_httpConnectionOptions.Proxy != null) 562httpClientHandler.Proxy = _httpConnectionOptions.Proxy; 569httpClientHandler.CookieContainer = _httpConnectionOptions.Cookies; 582var clientCertificates = _httpConnectionOptions.ClientCertificates; 588if (_httpConnectionOptions.UseDefaultCredentials != null) 590httpClientHandler.UseDefaultCredentials = _httpConnectionOptions.UseDefaultCredentials.Value; 593allowHttp2 = !_httpConnectionOptions.UseDefaultCredentials.Value; 596if (_httpConnectionOptions.Credentials != null) 598httpClientHandler.Credentials = _httpConnectionOptions.Credentials; 606if (_httpConnectionOptions.HttpMessageHandlerFactory != null) 608httpMessageHandler = _httpConnectionOptions.HttpMessageHandlerFactory(httpClientHandler); 633if (_httpConnectionOptions?.Headers != null) 635foreach (var header in _httpConnectionOptions.Headers)