1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
694return new ResolvedEndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
19 references to ResolvedEndpointInfo
Aspire.Dashboard (11)
DashboardWebApplication.cs (11)
57private readonly List<Func<ResolvedEndpointInfo>> _frontendEndPointAccessor = new(); 58private Func<ResolvedEndpointInfo>? _otlpServiceGrpcEndPointAccessor; 59private Func<ResolvedEndpointInfo>? _otlpServiceHttpEndPointAccessor; 60private Func<ResolvedEndpointInfo>? _mcpEndPointAccessor; 62public List<Func<ResolvedEndpointInfo>> FrontendEndPointsAccessor 75public Func<ResolvedEndpointInfo> FrontendSingleEndPointAccessor 92public Func<ResolvedEndpointInfo> OtlpServiceGrpcEndPointAccessor 97public Func<ResolvedEndpointInfo> OtlpServiceHttpEndPointAccessor 102public Func<ResolvedEndpointInfo> McpEndPointAccessor 349ResolvedEndpointInfo? frontendEndpointInfo = null; 682static Func<ResolvedEndpointInfo> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (8)
Integration\OtlpHttpServiceTests.cs (6)
230var endpoint = app.OtlpServiceHttpEndPointAccessor(); 261var endpoint = app.OtlpServiceHttpEndPointAccessor(); 308var endpoint = app.OtlpServiceHttpEndPointAccessor(); 333var endpoint = app.OtlpServiceHttpEndPointAccessor(); 362var endpoint = app.OtlpServiceHttpEndPointAccessor(); 391var endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\StartupTests.cs (2)
996private static void AssertIPv4OrIPv6Endpoint(Func<ResolvedEndpointInfo> endPointAccessor) 1003private static void AssertDynamicIPEndpoint(Func<ResolvedEndpointInfo> endPointAccessor)