4 writes to Url
Microsoft.AspNetCore.Http.Connections.Client (3)
HttpConnection.cs (1)
127return new HttpConnectionOptions { Url = url, Transports = transports };
HttpConnectionFactory.cs (2)
60shallowCopiedOptions.Url = uriEndPoint.Uri; 84Url = options.Url,
Microsoft.AspNetCore.SignalR.Client (1)
HubConnectionBuilderHttpExtensions.cs (1)
144o.Url = url;
7 references to Url
Microsoft.AspNetCore.Http.Connections.Client (6)
HttpConnection.cs (2)
139if (httpConnectionOptions.Url == null) 149_url = _httpConnectionOptions.Url;
HttpConnectionFactory.cs (4)
53if (_httpConnectionOptions.Url != null && _httpConnectionOptions.Url != uriEndPoint.Uri) 55throw new InvalidOperationException($"If {nameof(HttpConnectionOptions)}.{nameof(HttpConnectionOptions.Url)} was set, it must match the {nameof(UriEndPoint)}.{nameof(UriEndPoint.Uri)} passed to {nameof(ConnectAsync)}."); 84Url = options.Url,
Microsoft.AspNetCore.SignalR.Client (1)
HubConnectionBuilderHttpExtensions.cs (1)
171: base(httpConnectionOptions.Value.Url!)