1 write to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
155_httpConnectionOptions = httpConnectionOptions;
25 references to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (25)
HttpConnection.cs (25)
159_url = _httpConnectionOptions.Url; 194return StartAsync(_httpConnectionOptions.DefaultTransferFormat, cancellationToken); 316_accessTokenProvider = _httpConnectionOptions.AccessTokenProvider; 320if (_httpConnectionOptions.SkipNegotiation) 322if (_httpConnectionOptions.Transports == HttpTransportType.WebSockets) 324Log.StartingTransport(_logger, _httpConnectionOptions.Transports, uri); 325await StartTransport(uri, _httpConnectionOptions.Transports, transferFormat, cancellationToken, useStatefulReconnect: false).ConfigureAwait(false); 398if ((transportType & _httpConnectionOptions.Transports) == 0) 414_httpConnectionOptions.UseStatefulReconnect = transportType == HttpTransportType.WebSockets ? _httpConnectionOptions.UseStatefulReconnect : false; 475if (_httpConnectionOptions.UseStatefulReconnect) 581if (_httpConnectionOptions != null) 586if (_httpConnectionOptions.Proxy != null) 588httpClientHandler.Proxy = _httpConnectionOptions.Proxy; 595httpClientHandler.CookieContainer = _httpConnectionOptions.Cookies; 608var clientCertificates = _httpConnectionOptions.ClientCertificates; 614if (_httpConnectionOptions.UseDefaultCredentials != null) 616httpClientHandler.UseDefaultCredentials = _httpConnectionOptions.UseDefaultCredentials.Value; 619allowHttp2 = !_httpConnectionOptions.UseDefaultCredentials.Value; 622if (_httpConnectionOptions.Credentials != null) 624httpClientHandler.Credentials = _httpConnectionOptions.Credentials; 632if (_httpConnectionOptions.HttpMessageHandlerFactory != null) 634httpMessageHandler = _httpConnectionOptions.HttpMessageHandlerFactory(httpClientHandler); 660if (_httpConnectionOptions?.Headers != null) 662foreach (var header in _httpConnectionOptions.Headers)