1 type derived from UriEndPoint
Microsoft.AspNetCore.SignalR.Client (1)
HubConnectionBuilderHttpExtensions.cs (1)
168private sealed class HttpConnectionOptionsDerivedHttpEndPoint : UriEndPoint
2 instantiations of UriEndPoint
Microsoft.AspNetCore.Http.Connections.Client (2)
HttpConnection.cs (2)
359RemoteEndPoint = new UriEndPoint(Utils.CreateEndPointUri(uri)); 415RemoteEndPoint = new UriEndPoint(Utils.CreateEndPointUri(uri));
10 references to UriEndPoint
Microsoft.AspNetCore.Connections.Abstractions (1)
UriEndPoint.cs (1)
15/// Initializes a new instance of the <see cref="UriEndPoint"/> class.
Microsoft.AspNetCore.Http.Connections.Client (6)
HttpConnectionFactory.cs (6)
37/// Creates a new connection to an <see cref="UriEndPoint"/>. 39/// <param name="endPoint">The <see cref="UriEndPoint"/> to connect to.</param> 48if (!(endPoint is UriEndPoint uriEndPoint)) 50throw new NotSupportedException($"The provided {nameof(EndPoint)} must be of type {nameof(UriEndPoint)}."); 55throw new InvalidOperationException($"If {nameof(HttpConnectionOptions)}.{nameof(HttpConnectionOptions.Url)} was set, it must match the {nameof(UriEndPoint)}.{nameof(UriEndPoint.Uri)} passed to {nameof(ConnectAsync)}.");
Microsoft.AspNetCore.SignalR.Client.Core (3)
HubConnection.cs (3)
256_serviceName = (_endPoint is UriEndPoint e) ? e.Uri.AbsolutePath.Trim('/') : null; 1168var initialUri = (_endPoint as UriEndPoint)?.Uri; 2334ConnectionUrl = (connection.RemoteEndPoint is UriEndPoint ep) ? ep.Uri : null;