1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
677return new EndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
16 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 (7)
Integration\OtlpHttpServiceTests.cs (5)
226var endpoint = app.OtlpServiceHttpEndPointAccessor(); 254var endpoint = app.OtlpServiceHttpEndPointAccessor(); 279var endpoint = app.OtlpServiceHttpEndPointAccessor(); 308var endpoint = app.OtlpServiceHttpEndPointAccessor(); 337var endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\StartupTests.cs (2)
849private static void AssertIPv4OrIPv6Endpoint(Func<EndpointInfo> endPointAccessor) 856private static void AssertDynamicIPEndpoint(Func<EndpointInfo> endPointAccessor)