1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
677return new EndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
17 references to EndpointInfo
Aspire.Dashboard (9)
DashboardWebApplication.cs (9)
54private readonly List<Func<EndpointInfo>> _frontendEndPointAccessor = new(); 55private Func<EndpointInfo>? _otlpServiceGrpcEndPointAccessor; 56private Func<EndpointInfo>? _otlpServiceHttpEndPointAccessor; 58public List<Func<EndpointInfo>> FrontendEndPointsAccessor 71public Func<EndpointInfo> FrontendSingleEndPointAccessor 88public Func<EndpointInfo> OtlpServiceGrpcEndPointAccessor 93public Func<EndpointInfo> OtlpServiceHttpEndPointAccessor 319EndpointInfo? frontendEndpointInfo = null; 665static 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)
849private static void AssertIPv4OrIPv6Endpoint(Func<EndpointInfo> endPointAccessor) 856private static void AssertDynamicIPEndpoint(Func<EndpointInfo> endPointAccessor)