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