1 instantiation of HttpConnection
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnectionFactory.cs (1)
62var connection = new HttpConnection(shallowCopiedOptions, _loggerFactory);
27 references to HttpConnection
Microsoft.AspNetCore.Http.Connections.Client (15)
HttpConnection.cs (6)
77/// The connection ID is set when the <see cref="HttpConnection"/> is started and should not be set by user code. 96/// Initializes a new instance of the <see cref="HttpConnection"/> class. 104/// Initializes a new instance of the <see cref="HttpConnection"/> class. 114/// Initializes a new instance of the <see cref="HttpConnection"/> class. 131/// Initializes a new instance of the <see cref="HttpConnection"/> class. 146_logger = _loggerFactory.CreateLogger(typeof(HttpConnection));
HttpConnectionFactory.cs (2)
16/// A factory for creating <see cref="HttpConnection"/> instances. 62var connection = new HttpConnection(shallowCopiedOptions, _loggerFactory);
HttpConnectionOptions.cs (4)
20/// Options used to configure a <see cref="HttpConnection"/> instance. 248/// Gets or sets the default <see cref="TransferFormat" /> to use if <see cref="HttpConnection.StartAsync(CancellationToken)"/> 249/// is called instead of <see cref="HttpConnection.StartAsync(TransferFormat, CancellationToken)"/>. 280/// Also preserves the <see cref="HttpConnection.ConnectionId"/> when the reconnect is successful.
Internal\AccessTokenHttpMessageHandler.cs (3)
14private readonly HttpConnection _httpConnection; 17public AccessTokenHttpMessageHandler(HttpMessageHandler inner, HttpConnection httpConnection) : base(inner) 44HttpConnection.Log.RetryAccessToken(_httpConnection._logger, result.StatusCode);
Microsoft.AspNetCore.SignalR.Client (12)
HubConnectionBuilderHttpExtensions.cs (12)
38/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 50/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 51/// <param name="configureHttpConnection">The delegate that configures the <see cref="HttpConnection"/>.</param> 63/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 76/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 78/// <param name="configureHttpConnection">The delegate that configures the <see cref="HttpConnection"/>.</param> 90/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 102/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 103/// <param name="configureHttpConnection">The delegate that configures the <see cref="HttpConnection"/>.</param> 115/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 128/// <param name="url">The URL the <see cref="HttpConnection"/> will use.</param> 130/// <param name="configureHttpConnection">The delegate that configures the <see cref="HttpConnection"/>.</param>