1 write to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnection.cs (1)
153_httpConnectionOptions = httpConnectionOptions;
25 references to _httpConnectionOptions
Microsoft.AspNetCore.Http.Connections.Client (25)
HttpConnection.cs (25)
155_url = _httpConnectionOptions.Url; 190return StartAsync(_httpConnectionOptions.DefaultTransferFormat, cancellationToken); 312_accessTokenProvider = _httpConnectionOptions.AccessTokenProvider; 316if (_httpConnectionOptions.SkipNegotiation) 318if (_httpConnectionOptions.Transports == HttpTransportType.WebSockets) 320Log.StartingTransport(_logger, _httpConnectionOptions.Transports, uri); 321await StartTransport(uri, _httpConnectionOptions.Transports, transferFormat, cancellationToken, useStatefulReconnect: false).ConfigureAwait(false); 394if ((transportType & _httpConnectionOptions.Transports) == 0) 410_httpConnectionOptions.UseStatefulReconnect = transportType == HttpTransportType.WebSockets ? _httpConnectionOptions.UseStatefulReconnect : false; 471if (_httpConnectionOptions.UseStatefulReconnect) 577if (_httpConnectionOptions != null) 582if (_httpConnectionOptions.Proxy != null) 584httpClientHandler.Proxy = _httpConnectionOptions.Proxy; 591httpClientHandler.CookieContainer = _httpConnectionOptions.Cookies; 604var clientCertificates = _httpConnectionOptions.ClientCertificates; 610if (_httpConnectionOptions.UseDefaultCredentials != null) 612httpClientHandler.UseDefaultCredentials = _httpConnectionOptions.UseDefaultCredentials.Value; 615allowHttp2 = !_httpConnectionOptions.UseDefaultCredentials.Value; 618if (_httpConnectionOptions.Credentials != null) 620httpClientHandler.Credentials = _httpConnectionOptions.Credentials; 628if (_httpConnectionOptions.HttpMessageHandlerFactory != null) 630httpMessageHandler = _httpConnectionOptions.HttpMessageHandlerFactory(httpClientHandler); 655if (_httpConnectionOptions?.Headers != null) 657foreach (var header in _httpConnectionOptions.Headers)