1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
656return new EndpointInfo(address, endpoint, endpointConfiguration.IsHttps);
16 references to EndpointInfo
Aspire.Dashboard (9)
DashboardWebApplication.cs (9)
53private readonly List<Func<EndpointInfo>> _frontendEndPointAccessor = new(); 54private Func<EndpointInfo>? _otlpServiceGrpcEndPointAccessor; 55private Func<EndpointInfo>? _otlpServiceHttpEndPointAccessor; 57public List<Func<EndpointInfo>> FrontendEndPointsAccessor 70public Func<EndpointInfo> FrontendSingleEndPointAccessor 87public Func<EndpointInfo> OtlpServiceGrpcEndPointAccessor 92public Func<EndpointInfo> OtlpServiceHttpEndPointAccessor 303EndpointInfo? frontendEndpointInfo = null; 644static 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)
785private static void AssertIPv4OrIPv6Endpoint(Func<EndpointInfo> endPointAccessor) 792private static void AssertDynamicIPEndpoint(Func<EndpointInfo> endPointAccessor)