1 instantiation of ResolvedEndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
715return new ResolvedEndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
19 references to ResolvedEndpointInfo
Aspire.Dashboard (11)
DashboardWebApplication.cs (11)
58private readonly List<Func<ResolvedEndpointInfo>> _frontendEndPointAccessor = new(); 59private Func<ResolvedEndpointInfo>? _otlpServiceGrpcEndPointAccessor; 60private Func<ResolvedEndpointInfo>? _otlpServiceHttpEndPointAccessor; 61private Func<ResolvedEndpointInfo>? _mcpEndPointAccessor; 63public List<Func<ResolvedEndpointInfo>> FrontendEndPointsAccessor 76public Func<ResolvedEndpointInfo> FrontendSingleEndPointAccessor 93public Func<ResolvedEndpointInfo> OtlpServiceGrpcEndPointAccessor 98public Func<ResolvedEndpointInfo> OtlpServiceHttpEndPointAccessor 103public Func<ResolvedEndpointInfo> McpEndPointAccessor 361ResolvedEndpointInfo? frontendEndpointInfo = null; 703static 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)
1046private static void AssertIPv4OrIPv6Endpoint(Func<ResolvedEndpointInfo> endPointAccessor) 1053private static void AssertDynamicIPEndpoint(Func<ResolvedEndpointInfo> endPointAccessor)