1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
787return new ResolvedEndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
27 references to ResolvedEndpointInfo
Aspire.Dashboard (10)
DashboardWebApplication.cs (10)
74private readonly List<Func<ResolvedEndpointInfo>> _frontendEndPointAccessor = new(); 75private Func<ResolvedEndpointInfo>? _otlpServiceGrpcEndPointAccessor; 76private Func<ResolvedEndpointInfo>? _otlpServiceHttpEndPointAccessor; 78public List<Func<ResolvedEndpointInfo>> FrontendEndPointsAccessor 91public Func<ResolvedEndpointInfo> FrontendSingleEndPointAccessor 108public Func<ResolvedEndpointInfo> OtlpServiceGrpcEndPointAccessor 113public Func<ResolvedEndpointInfo> OtlpServiceHttpEndPointAccessor 414ResolvedEndpointInfo? frontendEndpointInfo = null; 589private void PrintSummary(ResolvedEndpointInfo? frontendEndpointInfo) 775static Func<ResolvedEndpointInfo> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (17)
Integration\FrontendBrowserTokenAuthTests.cs (7)
93var httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps); 94var httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps); 141var httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps); 142var httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps); 180var httpsEndpoint = endpoints.Single(endpoint => endpoint.IsHttps); 181var httpEndpoint = endpoints.Single(endpoint => !endpoint.IsHttps); 228var httpEndpoint = app.FrontendEndPointsAccessor
Integration\OtlpHttpServiceTests.cs (6)
236var endpoint = app.OtlpServiceHttpEndPointAccessor(); 267var endpoint = app.OtlpServiceHttpEndPointAccessor(); 314var endpoint = app.OtlpServiceHttpEndPointAccessor(); 339var endpoint = app.OtlpServiceHttpEndPointAccessor(); 368var endpoint = app.OtlpServiceHttpEndPointAccessor(); 397var endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\Playwright\BrowserTokenAuthenticationTests.cs (2)
212var httpsEndpoint = endpoints.Single(e => e.IsHttps); 213var httpEndpoint = endpoints.Single(e => !e.IsHttps);
Integration\StartupTests.cs (2)
1129private static void AssertIPv4OrIPv6Endpoint(Func<ResolvedEndpointInfo> endPointAccessor) 1136private static void AssertDynamicIPEndpoint(Func<ResolvedEndpointInfo> endPointAccessor)