24 writes to Url
ClientSample (1)
RawSample.cs (1)
39Url = new Uri(baseUrl),
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.Http.Connections.Tests (5)
HttpConnectionDispatcherTests.cs (5)
3268Url = new Uri(url), 3330Url = new Uri(url), 3430Url = new Uri(url), 3471Url = new Uri(url), 3544Url = new Uri(url + "/foo"),
Microsoft.AspNetCore.SignalR.Client (1)
HubConnectionBuilderHttpExtensions.cs (1)
144o.Url = url;
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
HubConnectionTests.cs (1)
78var options = new HttpConnectionOptions { Url = httpEndpoint.Uri, Transports = transportType, DefaultTransferFormat = transferFormat };
Microsoft.AspNetCore.SignalR.Client.Tests (6)
HttpConnectionFactoryTests.cs (1)
67Url = url1,
HttpConnectionTests.cs (3)
87httpOptions.Url = new Uri("http://fakeuri.org/"); 133httpOptions.Url = new Uri("http://fakeuri.org/"); 181Url = new Uri("http://fakeurl.org/"),
HttpConnectionTests.Helpers.cs (2)
37httpOptions.Url = new Uri(url); 51httpConnectionOptions.Url ??= new Uri("http://fakeuri.org/");
Microsoft.AspNetCore.SignalR.Tests (7)
EndToEndTests.cs (7)
66var connection = new HttpConnection(new HttpConnectionOptions { Url = new Uri(url), DefaultTransferFormat = TransferFormat.Text }, LoggerFactory, new TestTransportFactory()); 80var connection = new HttpConnection(new HttpConnectionOptions { Url = new Uri(url), Transports = transportType, DefaultTransferFormat = TransferFormat.Text }, LoggerFactory); 180Url = new Uri(url), 230Url = new Uri(url), 267var connection = new HttpConnection(new HttpConnectionOptions { Url = new Uri(url), Transports = transportType, DefaultTransferFormat = requestedTransferFormat }, LoggerFactory); 413Url = new Uri(url), 489Url = new Uri(url),
9 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!)
Microsoft.AspNetCore.SignalR.Client.Tests (2)
HttpConnectionFactoryTests.cs (1)
90{ $"{nameof(HttpConnectionOptions.Url)}", new Uri("https://example.com") },
HubConnectionBuilderExtensionsTests.cs (1)
29Assert.Equal(new Uri("http://tempuri.org"), value.Url);