1 override of EndPoint
Microsoft.Extensions.ServiceDiscovery.Abstractions (1)
Internal\ServiceEndpointImpl.cs (1)
11public override EndPoint EndPoint { get; } = endPoint;
6 references to EndPoint
Microsoft.Extensions.ServiceDiscovery (3)
Configuration\ConfigurationServiceEndpointProvider.cs (2)
148if (ep.EndPoint is UriEndPoint uri && uri.Uri.Scheme is { } scheme) 160if (ep.EndPoint is UriEndPoint uri && uri.Uri.Scheme is { } scheme)
Http\ResolvingHttpDelegatingHandler.cs (1)
63var endPoint = serviceEndpoint.EndPoint;
Microsoft.Extensions.ServiceDiscovery.Tests (3)
PassThroughServiceEndpointResolverTests.cs (1)
128Assert.Equal(new DnsEndPoint("catalog", 0), result.Endpoints[0].EndPoint);
ServiceEndpointResolverTests.cs (2)
164var ip = Assert.IsType<IPEndPoint>(sep.EndPoint); 285var ip = Assert.IsType<IPEndPoint>(sep.EndPoint);