1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
694return new EndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
17 references to EndpointInfo
Aspire.Dashboard (9)
DashboardWebApplication.cs (9)
56private readonly List<Func<EndpointInfo>> _frontendEndPointAccessor = new(); 57private Func<EndpointInfo>? _otlpServiceGrpcEndPointAccessor; 58private Func<EndpointInfo>? _otlpServiceHttpEndPointAccessor; 60public List<Func<EndpointInfo>> FrontendEndPointsAccessor 73public Func<EndpointInfo> FrontendSingleEndPointAccessor 90public Func<EndpointInfo> OtlpServiceGrpcEndPointAccessor 95public Func<EndpointInfo> OtlpServiceHttpEndPointAccessor 336EndpointInfo? frontendEndpointInfo = null; 682static Func<EndpointInfo> 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)
882private static void AssertIPv4OrIPv6Endpoint(Func<EndpointInfo> endPointAccessor) 889private static void AssertDynamicIPEndpoint(Func<EndpointInfo> endPointAccessor)