1 instantiation of EndpointInfo
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
694
return new
EndpointInfo
(address, endpoint, endpointConfiguration.IsHttps);
17 references to EndpointInfo
Aspire.Dashboard (9)
DashboardWebApplication.cs (9)
56
private readonly List<Func<
EndpointInfo
>> _frontendEndPointAccessor = new();
57
private Func<
EndpointInfo
>? _otlpServiceGrpcEndPointAccessor;
58
private Func<
EndpointInfo
>? _otlpServiceHttpEndPointAccessor;
60
public List<Func<
EndpointInfo
>> FrontendEndPointsAccessor
73
public Func<
EndpointInfo
> FrontendSingleEndPointAccessor
90
public Func<
EndpointInfo
> OtlpServiceGrpcEndPointAccessor
95
public Func<
EndpointInfo
> OtlpServiceHttpEndPointAccessor
336
EndpointInfo
? frontendEndpointInfo = null;
682
static Func<
EndpointInfo
> CreateEndPointAccessor(EndpointConfiguration endpointConfiguration)
Aspire.Dashboard.Tests (8)
Integration\OtlpHttpServiceTests.cs (6)
230
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
261
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
308
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
333
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
362
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
391
var
endpoint = app.OtlpServiceHttpEndPointAccessor();
Integration\StartupTests.cs (2)
882
private static void AssertIPv4OrIPv6Endpoint(Func<
EndpointInfo
> endPointAccessor)
889
private static void AssertDynamicIPEndpoint(Func<
EndpointInfo
> endPointAccessor)