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); 390if ((transportType & _httpConnectionOptions.Transports) == 0) 406_httpConnectionOptions.UseStatefulReconnect = transportType == HttpTransportType.WebSockets ? _httpConnectionOptions.UseStatefulReconnect : false; 467if (_httpConnectionOptions.UseStatefulReconnect) 561if (_httpConnectionOptions != null) 566if (_httpConnectionOptions.Proxy != null) 568httpClientHandler.Proxy = _httpConnectionOptions.Proxy; 575httpClientHandler.CookieContainer = _httpConnectionOptions.Cookies; 588var clientCertificates = _httpConnectionOptions.ClientCertificates; 594if (_httpConnectionOptions.UseDefaultCredentials != null) 596httpClientHandler.UseDefaultCredentials = _httpConnectionOptions.UseDefaultCredentials.Value; 599allowHttp2 = !_httpConnectionOptions.UseDefaultCredentials.Value; 602if (_httpConnectionOptions.Credentials != null) 604httpClientHandler.Credentials = _httpConnectionOptions.Credentials; 612if (_httpConnectionOptions.HttpMessageHandlerFactory != null) 614httpMessageHandler = _httpConnectionOptions.HttpMessageHandlerFactory(httpClientHandler); 639if (_httpConnectionOptions?.Headers != null) 641foreach (var header in _httpConnectionOptions.Headers)